Fixes PatternTerminal clearing crafting slot on tried crafting (#2963)

This commit is contained in:
tyra 2017-07-22 01:11:42 +02:00 committed by yueh
parent fbaff342e4
commit 3a053d9ebe

View file

@ -499,6 +499,11 @@ public class ContainerPatternTerm extends ContainerMEMonitorable implements IAEA
}
this.detectAndSendChanges();
}
if( s == this.craftSlot && Platform.isClient() )
{
this.getAndUpdateOutput();
}
}
public void clear()