Merge pull request #1551 from yueh/fix-1036

No longer invalidate the cache on simulate.
This commit is contained in:
yueh 2015-06-05 23:03:08 +02:00
commit 86e5d6f5da

View file

@ -86,7 +86,10 @@ public class MEMonitorIInventory implements IMEMonitor<IAEItemStack>
out = this.adaptor.addItems( input.getItemStack() );
}
this.onTick();
if( type == Actionable.MODULATE )
{
this.onTick();
}
if( out == null )
{
@ -122,7 +125,10 @@ public class MEMonitorIInventory implements IMEMonitor<IAEItemStack>
IAEItemStack o = request.copy();
o.setStackSize( out.stackSize );
this.onTick();
if( type == Actionable.MODULATE )
{
this.onTick();
}
return o;
}