Skip to content

Commit

Permalink
Fix minor bug with storage monitor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
raoulvdberge committed Apr 27, 2017
1 parent 005e523 commit 1d19587
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public boolean deposit(EntityPlayer player, ItemStack toInsert) {
}

public void extract(EntityPlayer player, EnumFacing side) {
if (type != IType.ITEMS || network != null || holder.getDirection() != side) {
if (type != IType.ITEMS || network == null || holder.getDirection() != side) {
return;
}

Expand Down

0 comments on commit 1d19587

Please sign in to comment.