Skip to content

Commit 872da46

Browse files
committed
Merge pull request #213 from way2muchnoise/1.7-update
should fix ticking proxy entitys
2 parents 00fa6ba + 81e3f40 commit 872da46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/minechem/tileentity/prefab/TileEntityProxy.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public boolean hasCustomInventoryName()
188188
@Override
189189
public int getInventoryStackLimit()
190190
{
191-
if (this.getManager() != null && this.getManager() instanceof ISidedInventory)
191+
if (this.manager != null && this.manager != this)
192192
{
193193
return ((ISidedInventory) this.getManager()).getInventoryStackLimit();
194194
}

0 commit comments

Comments
 (0)