mirror of
https://github.com/TotalFreedomMC/OpenInv.git
synced 2024-12-22 16:05:03 +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();
|
||||
}
|
||||
|
||||
SpecialEnderChest chest = plugin.getPlayerEnderChest(player, false);
|
||||
if (chest != null) {
|
||||
chest.playerOnline(player);
|
||||
SpecialEnderChest enderChest = plugin.getPlayerEnderChest(player, false);
|
||||
if (enderChest != null) {
|
||||
enderChest.playerOnline(player);
|
||||
}
|
||||
}
|
||||
}.runTask(plugin);
|
||||
|
|
Loading…
Reference in a new issue