Soulfire heating

- Integrate #724 on correct branch and through use of the data generator
This commit is contained in:
simibubi 2021-02-05 18:49:10 +01:00
parent 5a664d6d85
commit c85efe141f
2 changed files with 6 additions and 3 deletions

View File

@ -6,6 +6,8 @@
"minecraft:magma_block", "minecraft:magma_block",
"minecraft:campfire", "minecraft:campfire",
"minecraft:lava", "minecraft:lava",
"minecraft:fire" "minecraft:fire",
"minecraft:soul_fire",
"minecraft:soul_campfire"
] ]
} }

View File

@ -199,8 +199,9 @@ public class AllTags {
AllBlockTags.FAN_TRANSPARENT.includeAll(BlockTags.FENCES); AllBlockTags.FAN_TRANSPARENT.includeAll(BlockTags.FENCES);
AllBlockTags.FAN_TRANSPARENT.add(Blocks.IRON_BARS); AllBlockTags.FAN_TRANSPARENT.add(Blocks.IRON_BARS);
AllBlockTags.FAN_HEATERS.add(Blocks.MAGMA_BLOCK, Blocks.CAMPFIRE, Blocks.LAVA, Blocks.FIRE); AllBlockTags.FAN_HEATERS.add(Blocks.MAGMA_BLOCK, Blocks.CAMPFIRE, Blocks.LAVA, Blocks.FIRE, Blocks.SOUL_FIRE,
Blocks.SOUL_CAMPFIRE);
AllFluidTags.loadClass(); AllFluidTags.loadClass();
} }
} }