Fixed Issue with Interface and Gui, and Derpy Automation( Hoppers )

This commit is contained in:
AlgorithmX2
2014-01-30 19:23:12 -06:00
parent d10033fb50
commit 79a8da50a8
4 changed files with 26 additions and 3 deletions
@@ -137,6 +137,15 @@ public class AppEngInternalInventory implements IInventory, Iterable<ItemStack>
}
}
// for guis...
public void onInventoryChanged(int slotIndex)
{
if ( te != null && eventsEnabled() )
{
te.onChangeInventory( this, slotIndex, InvOperation.onInventoryChanged, null, null );
}
}
@Override
public int getInventoryStackLimit()
{
@@ -242,4 +251,5 @@ public class AppEngInternalInventory implements IInventory, Iterable<ItemStack>
{
return new InvIterator( this );
}
}