From 8df05f31bf811f1183de21822f4c53c8d647d86d Mon Sep 17 00:00:00 2001 From: ayutac Date: Sat, 20 May 2023 18:31:29 +0200 Subject: [PATCH] Fixed the loot tables. --- src/main/java/techreborn/init/ModLoot.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/techreborn/init/ModLoot.java b/src/main/java/techreborn/init/ModLoot.java index d53fedb31..a15c008eb 100644 --- a/src/main/java/techreborn/init/ModLoot.java +++ b/src/main/java/techreborn/init/ModLoot.java @@ -100,7 +100,7 @@ public class ModLoot { "minecraft:chests/jungle_temple", "minecraft:chests/simple_dungeon", "minecraft:chests/shipwreck_treasure", - "minecraft:chest/underwater_ruin_small", + "minecraft:chests/underwater_ruin_small", "minecraft:chests/village/village_weaponsmith", "minecraft:chests/village/village_armorer", "minecraft:chests/village/village_toolsmith" @@ -108,7 +108,7 @@ public class ModLoot { case "minecraft:chests/stronghold_corridor", "minecraft:chests/stronghold_crossing", "minecraft:chests/stronghold_library", - "minecraft:chest/underwater_ruin_big", + "minecraft:chests/underwater_ruin_big", "minecraft:chests/pillager_outpost" -> tableBuilder.pool(poolAdvanced); case "minecraft:chests/woodland_mansion", @@ -116,7 +116,7 @@ public class ModLoot { -> tableBuilder.pool(poolIndustrial); case "minecraft:archeology/trail_ruins_common" -> tableBuilder.modifyPools(poolBuilder -> poolBuilder.with(ItemEntry.builder(Parts.RUBBER).build())); - case "minecraft:gift/cat_morning_gift" + case "minecraft:gameplay/cat_morning_gift" -> tableBuilder.modifyPools(poolBuilder -> poolBuilder.with(ItemEntry.builder(Parts.SCRAP).weight(5).build())); } }