Skip to content

Commit

Permalink
Fix lava comparison in FluidHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
skyboy committed May 13, 2016
1 parent df9ad09 commit c1b8cbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/cofh/lib/util/helpers/FluidHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public static FluidStack getFluidFromWorld(World world, int x, int y, int z, boo
} else {
return null;
}
} else if (Block.isEqualTo(bId, Blocks.lava)) {
} else if (Block.isEqualTo(bId, Blocks.lava) || Block.isEqualTo(bId, Blocks.flowing_lava)) {
if (bMeta == 0) {
return LAVA.copy();
} else {
Expand Down

0 comments on commit c1b8cbd

Please sign in to comment.