mirror of
https://github.com/TotalFreedomMC/OpenInv.git
synced 2024-12-23 00:15:08 +00:00
Merge pull request #43 from ShadowRanger/master
Implement Jikoo's data duplication glitch fix
This commit is contained in:
commit
e39f009661
1 changed files with 3 additions and 3 deletions
|
@ -66,9 +66,9 @@ public class OpenInvPlayerListener implements Listener {
|
||||||
player.updateInventory();
|
player.updateInventory();
|
||||||
}
|
}
|
||||||
|
|
||||||
SpecialEnderChest chest = plugin.getPlayerEnderChest(player, false);
|
SpecialEnderChest enderChest = plugin.getPlayerEnderChest(player, false);
|
||||||
if (chest != null) {
|
if (enderChest != null) {
|
||||||
chest.playerOnline(player);
|
enderChest.playerOnline(player);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}.runTask(plugin);
|
}.runTask(plugin);
|
||||||
|
|
Loading…
Reference in a new issue