Mark Dirty for Assembler Actions.

This commit is contained in:
AlgorithmX2 2014-09-04 21:57:56 -05:00
parent de3db058c9
commit 44f86fefa0

View file

@ -385,6 +385,11 @@ public class TileMolecularAssembler extends AENetworkInvTile implements IAEAppEn
if ( inv.getStackInSlot( 9 ) != null ) if ( inv.getStackInSlot( 9 ) != null )
{ {
pushOut( inv.getStackInSlot( 9 ) ); pushOut( inv.getStackInSlot( 9 ) );
// did it eject?
if ( inv.getStackInSlot( 9 ) == null )
markDirty();
ejectHeldItems(); ejectHeldItems();
updateSleepyness(); updateSleepyness();
progress = 0; progress = 0;
@ -463,6 +468,7 @@ public class TileMolecularAssembler extends AENetworkInvTile implements IAEAppEn
// ;P // ;P
} }
markDirty();
updateSleepyness(); updateSleepyness();
return isAwake ? TickRateModulation.IDLE : TickRateModulation.SLEEP; return isAwake ? TickRateModulation.IDLE : TickRateModulation.SLEEP;
} }