try to not void fluids in fluid terminal when running out of power

This commit is contained in:
Salomão
2021-06-17 23:32:16 -03:00
parent 0fb393820b
commit eab695b692
3 changed files with 7 additions and 3 deletions
@@ -157,7 +157,7 @@ public class AppEngSlot extends Slot
{
if( this.isSlotEnabled() )
{
return !this.itemHandler.extractItem( this.index, 1, true ).isEmpty();
return !this.itemHandler.extractItem( this.index, Integer.MAX_VALUE, true ).isEmpty();
}
return false;
}