Skip to content

Commit

Permalink
Update build.properties
Browse files Browse the repository at this point in the history
Signed-off-by: King Lemming <[email protected]>
  • Loading branch information
KingLemming committed Oct 1, 2018
1 parent 7be127b commit eccb4e4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Minecraft Version
mc_version=1.12.2
forge_version=14.23.3.2655
forge_version=14.23.4.2739
mappings=snapshot_20171003

# Dependencies
rf_mc_version=1.12
rf_version=2.0.2.+
cofh_core_version=4.5.0.+
rf_version=2.1.0.+
cofh_core_version=4.6.0.+
cofh_world_version=1.2.0.+
4 changes: 2 additions & 2 deletions src/main/java/cofh/thermalfoundation/block/BlockOreFluid.java
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ public void randomDisplayTick(IBlockState state, World world, BlockPos pos, Rand

BlockFluidCore fluid = fluidBlocks[state.getValue(VARIANT).getMetadata()];

int density = fluid.getDensity();
int densityDir = fluid.getDensityDir();
int density = fluid.getDensitySafe();
int densityDir = fluid.getDensityDirSafe();

if (density < 0) {
py = pos.getY() + 1.10D;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit eccb4e4

Please sign in to comment.