Small fix to previous commit
This commit is contained in:
@@ -218,7 +218,7 @@ public class NetworkNodeDiskManipulator extends NetworkNode implements IComparab
|
|||||||
while (itemFilters.getSlots() > i && extracted == null) {
|
while (itemFilters.getSlots() > i && extracted == null) {
|
||||||
ItemStack filterStack = ItemStack.EMPTY;
|
ItemStack filterStack = ItemStack.EMPTY;
|
||||||
|
|
||||||
while (itemFilters.getSlots() > i && filterStack == null) {
|
while (itemFilters.getSlots() > i && filterStack.isEmpty()) {
|
||||||
filterStack = itemFilters.getStackInSlot(i++);
|
filterStack = itemFilters.getStackInSlot(i++);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ public class ItemHandlerFluid extends ItemHandlerBase {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
public FluidStack getFluidStackInSlot(int slot) {
|
public FluidStack getFluidStackInSlot(int slot) {
|
||||||
return fluids[slot];
|
return fluids[slot];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user