From 7851404d6907f8e65ef6368656f1cd81e1cc5c85 Mon Sep 17 00:00:00 2001 From: lishid Date: Wed, 31 Dec 2014 10:50:19 -0500 Subject: [PATCH] Fixed constructor not found issue. --- .../lishid/openinv/internal/v1_8_R1/SpecialPlayerInventory.java | 2 +- src/main/resources/plugin.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/lishid/openinv/internal/v1_8_R1/SpecialPlayerInventory.java b/src/main/java/com/lishid/openinv/internal/v1_8_R1/SpecialPlayerInventory.java index 89e085b..5fbe359 100644 --- a/src/main/java/com/lishid/openinv/internal/v1_8_R1/SpecialPlayerInventory.java +++ b/src/main/java/com/lishid/openinv/internal/v1_8_R1/SpecialPlayerInventory.java @@ -34,7 +34,7 @@ public class SpecialPlayerInventory extends PlayerInventory implements ISpecialP private CraftPlayer owner; private boolean playerOnline = false; - public SpecialPlayerInventory(Player p, boolean online) { + public SpecialPlayerInventory(Player p, Boolean online) { super(((CraftPlayer) p).getHandle()); this.owner = (CraftPlayer) p; this.items = player.inventory.items; diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 17f97a2..c6a2147 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,6 +1,6 @@ name: OpenInv main: com.lishid.openinv.OpenInv -version: 2.2.5 +version: 2.2.6 author: lishid description: > This plugin allows you to open a player's inventory as a chest and interact with it in real time.