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); } }