From 32035d1b4efae742fcb54a89c29447aef9535b88 Mon Sep 17 00:00:00 2001 From: eerussianguy Date: Tue, 5 Nov 2024 18:52:09 -0500 Subject: [PATCH] make compatible with latest 1.20.x version --- CHANGELOG.md | 7 +------ build.gradle.kts | 2 +- .../beneath/common/blocks/LavaAqueductBlock.java | 2 +- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cefd33e..f0a4f1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. \ No newline at end of file +- Made compatible with latest TFC version \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 68443e4..bdb1ed9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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" diff --git a/src/main/java/com/eerussianguy/beneath/common/blocks/LavaAqueductBlock.java b/src/main/java/com/eerussianguy/beneath/common/blocks/LavaAqueductBlock.java index 176eb52..8f5475d 100644 --- a/src/main/java/com/eerussianguy/beneath/common/blocks/LavaAqueductBlock.java +++ b/src/main/java/com/eerussianguy/beneath/common/blocks/LavaAqueductBlock.java @@ -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