fix pitcher plants and torchflowers self destructing on mars

This commit is contained in:
Pyritie 2026-01-21 22:36:54 +00:00
parent a5d858319c
commit f93e33ab8e
3 changed files with 16 additions and 9 deletions

View file

@ -30,10 +30,14 @@ const registerBeneathItemTags = (event) => {
event.add('tfg:softwood', 'beneath:wood/log/crimson')
event.add('tfg:softwood', 'beneath:wood/wood/crimson')
event.add('tfg:softwood', 'beneath:wood/stripped_log/crimson')
event.add('tfg:softwood', 'beneath:wood/stripped_wood/crimson')
event.add('tfg:stripped_softwood', 'beneath:wood/stripped_log/crimson')
event.add('tfg:stripped_softwood', 'beneath:wood/stripped_wood/crimson')
event.add('tfg:hardwood', 'beneath:wood/log/warped')
event.add('tfg:hardwood', 'beneath:wood/wood/warped')
event.add('tfg:hardwood', 'beneath:wood/stripped_log/warped')
event.add('tfg:hardwood', 'beneath:wood/stripped_wood/warped')
event.add('tfg:stripped_hardwood', 'beneath:wood/stripped_log/warped')
event.add('tfg:stripped_hardwood', 'beneath:wood/stripped_wood/warped')

View file

@ -109,6 +109,11 @@ function registerTFGMarsItemTags(event) {
event.add('tfg:charnia', 'betterend:charnia_red')
event.add('tfg:mars_plants', 'minecraft:weeping_vines')
event.add('tfg:mars_plants', 'minecraft:pitcher_plant')
event.add('tfg:mars_plants', 'minecraft:torchflower')
event.add('tfc:makes_cyan_dye', 'minecraft:pitcher_plant')
event.add('tfc:makes_orange_dye', 'minecraft:torchflower')
event.add('tfc:compost_greens_low', 'beneath:wood/leaves/crimson')
event.add('tfc:compost_greens_low', 'beneath:wood/leaves/warped')
@ -284,11 +289,13 @@ function registerTFGMarsBlockTags(event) {
event.add('tfg:do_not_destroy_in_space', 'tfg:grass/sangnum_kaolin_mycelium')
event.add('tfg:do_not_destroy_in_space', 'tfg:grass/mars_farmland')
event.add('tfg:do_not_destroy_in_space', 'tfg:grass/mars_path')
event.remove('ad_astra:destroyed_in_space', 'minecraft:pitcher_plant')
event.remove('ad_astra:destroyed_in_space', 'minecraft:torchflower')
event.remove('ad_astra:destroyed_in_space', 'tfg:blossom_berry')
event.remove('ad_astra:destroyed_in_space', 'tfg:blossom_berry_wild')
event.add('tfg:do_not_destroy_in_space', 'minecraft:pitcher_plant')
event.add('tfg:do_not_destroy_in_space', 'minecraft:torchflower')
event.remove('minecraft:tall_flowers', 'minecraft:pitcher_plant')
event.remove('minecraft:small_flowers', 'minecraft:torchflower')
event.remove('minecraft:flowers', 'minecraft:pitcher_plant')
event.remove('minecraft:flowers', 'minecraft:torchflower')
event.add('tfc:can_landslide', 'tfg:grass/mars_dirt')
event.add('tfc:can_landslide', 'tfg:grass/mars_clay_dirt')