mirror of
https://github.com/TotalFreedomMC/OpenInv.git
synced 2025-08-04 19:46:07 +00:00
Fixed constructor not found issue.
This commit is contained in:
parent
30b5acc3b4
commit
7851404d69
2 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ public class SpecialPlayerInventory extends PlayerInventory implements ISpecialP
|
||||||
private CraftPlayer owner;
|
private CraftPlayer owner;
|
||||||
private boolean playerOnline = false;
|
private boolean playerOnline = false;
|
||||||
|
|
||||||
public SpecialPlayerInventory(Player p, boolean online) {
|
public SpecialPlayerInventory(Player p, Boolean online) {
|
||||||
super(((CraftPlayer) p).getHandle());
|
super(((CraftPlayer) p).getHandle());
|
||||||
this.owner = (CraftPlayer) p;
|
this.owner = (CraftPlayer) p;
|
||||||
this.items = player.inventory.items;
|
this.items = player.inventory.items;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: OpenInv
|
name: OpenInv
|
||||||
main: com.lishid.openinv.OpenInv
|
main: com.lishid.openinv.OpenInv
|
||||||
version: 2.2.5
|
version: 2.2.6
|
||||||
author: lishid
|
author: lishid
|
||||||
description: >
|
description: >
|
||||||
This plugin allows you to open a player's inventory as a chest and interact with it in real time.
|
This plugin allows you to open a player's inventory as a chest and interact with it in real time.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue