Skip to content

Commit

Permalink
make compatible with latest 1.20.x version
Browse files Browse the repository at this point in the history
  • Loading branch information
eerussianguy committed Nov 5, 2024
1 parent 418aa21 commit 32035d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
7 changes: 1 addition & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# Changes

- Added Ancient Altars
- Added Lost Pages
- Added a sacrifice system, utilizing Lost Pages (found in chests) and Ancient Altars (crafted) to transform items into other items, at a cost. More recipes for this are TBD.
- Added Slimed Netherrack, an ore.
- Added a config for whether the portal-opening sacrifice works or not.
- Added some recipes for making Blackstone from Soot and overworld rocks.
- Made compatible with latest TFC version
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ val jeiVersion: String = "15.2.0.21"
val patchouliVersion: String = "1.20.1-81-FORGE"
val jadeVersion: String = "4614153"
val topVersion: String = "4629624"
val tfcVersion: String = "5571484"
val tfcVersion: String = "5872631"

val modId: String = "beneath"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public ItemStack pickupBlock(LevelAccessor level, BlockPos pos, BlockState state
@SuppressWarnings("deprecation")
public FluidState getFluidState(BlockState state)
{
return IFluidLoggable.super.getFluidState(state);
return IFluidLoggable.super.getFluidLoggedState(state);
}

@Override
Expand Down

0 comments on commit 32035d1

Please sign in to comment.