Skip to content

Commit

Permalink
Fix bug with using the correct fuel tank on smeltery changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Sep 9, 2014
1 parent 2f44669 commit 3820066
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/tconstruct/smeltery/logic/SmelteryLogic.java
Expand Up @@ -784,7 +784,7 @@ public void checkValidStructure (int x, int y, int z)

FluidStack liquid = ((IFluidHandler) tankContainer).getTankInfo(ForgeDirection.DOWN)[0].fluid;
if (liquid == null)
return;
continue;
if (!Smeltery.isSmelteryFuel(liquid.getFluid()))
continue;

Expand Down Expand Up @@ -1214,4 +1214,4 @@ public void closeInventory ()
public void openInventory ()
{
}
}
}

0 comments on commit 3820066

Please sign in to comment.