Merge pull request 'Fix client side pseudo item entity dropped from lore book' (#167) from Low-power/The-Aether:1.7.10-fix-lore-book-drop-item-entity-in-client-world into 1.7.10

Reviewed-on: https://gitea.gildedgames.com/GildedGames/The-Aether/pulls/167
This commit is contained in:
bconlon 2020-11-27 21:41:31 +00:00
commit 8bb5d3bd91

View file

@ -74,10 +74,12 @@ public class ContainerLore extends Container {
@Override
public void onContainerClosed(EntityPlayer entityplayer) {
ItemStack item = this.loreSlot.getStackInSlot(0);
if(!entityplayer.worldObj.isRemote) {
ItemStack item = this.loreSlot.getStackInSlot(0);
if (item != null) {
entityplayer.entityDropItem(item, 1.0F);
if (item != null) {
entityplayer.entityDropItem(item, 1.0F);
}
}
super.onContainerClosed(entityplayer);
@ -88,4 +90,4 @@ public class ContainerLore extends Container {
return !player.isDead;
}
}
}