added missing loot chests (#2771)

This commit is contained in:
Ayutac 2022-01-23 19:35:11 +01:00 committed by GitHub
parent f6eca1440b
commit f65e4466fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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