Skip to content

Commit

Permalink
Fixed Bug Related to Fading Obsidian
Browse files Browse the repository at this point in the history
 - Fixed lava in the Nether not turning back into source blocks with Fluid Freezer
  • Loading branch information
chronosacaria committed Jul 31, 2023
1 parent 4f81e25 commit fba33b8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.14.21

# Mod Properties
mod_version=5.0.0
mod_version=5.0.1
maven_group=chronosacaria
archives_base_name=mcda

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,6 @@ private boolean canMelt(BlockView world, BlockPos pos, int maxNeighbors) {
}

protected void melt(World world, BlockPos pos) {
if (world.getDimension().ultrawarm()) {
world.removeBlock(pos, false);
return;
}
world.setBlockState(pos, getMeltedState());
world.updateNeighbor(pos, getMeltedState().getBlock(), pos);
}
Expand Down

0 comments on commit fba33b8

Please sign in to comment.