added missing loot chests (#2771)
This commit is contained in:
parent
f6eca1440b
commit
f65e4466fe
1 changed files with 10 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue