Fixed constructor not found issue.

This commit is contained in:
lishid
2014-12-31 10:50:19 -05:00
parent 30b5acc3b4
commit 7851404d69
2 changed files with 2 additions and 2 deletions

View File

@@ -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;