From f65e4466fe1f700e8348ed1a148c56d672ac4a6d Mon Sep 17 00:00:00 2001 From: Ayutac Date: Sun, 23 Jan 2022 19:35:11 +0100 Subject: [PATCH] added missing loot chests (#2771) --- src/main/java/techreborn/init/ModLoot.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/main/java/techreborn/init/ModLoot.java b/src/main/java/techreborn/init/ModLoot.java index c438d1828..d38047dc3 100644 --- a/src/main/java/techreborn/init/ModLoot.java +++ b/src/main/java/techreborn/init/ModLoot.java @@ -100,13 +100,17 @@ public class ModLoot { "minecraft:chests/igloo_chest", "minecraft:chests/jungle_temple", "minecraft:chests/simple_dungeon", + "minecraft:chests/shipwreck_treasure", + "minecraft:chest/underwater_ruin_small", "minecraft:chests/village/village_weaponsmith", "minecraft:chests/village/village_armorer", "minecraft:chests/village/village_toolsmith" -> supplier.withPool(poolBasic); case "minecraft:chests/stronghold_corridor", "minecraft:chests/stronghold_crossing", - "minecraft:chests/stronghold_library" + "minecraft:chests/stronghold_library", + "minecraft:chest/underwater_ruin_big", + "minecraft:chests/pillager_outpost" -> supplier.withPool(poolAdvanced); case "minecraft:chests/woodland_mansion" -> supplier.withPool(poolIndustrial); @@ -114,7 +118,11 @@ public class ModLoot { } if (TechRebornConfig.enableNetherLoot) { - if (stringId.equals("minecraft:chests/nether_bridge")) { + if (stringId.equals("minecraft:chests/nether_bridge") || + stringId.equals("minecraft:chests/bastion_bridge") || + stringId.equals("minecraft:chests/bastion_hoglin_stable") || + stringId.equals("minecraft:chests/bastion_treasure") || + stringId.equals("minecraft:chests/bastion_other")) { supplier.withPool(poolAdvanced); } }