fixed not being able to use framed chests on contraptions, and made mars water infinite via hose pulley

This commit is contained in:
Pyritie 2025-07-25 13:16:10 +01:00
parent fdf80ff7de
commit 2764a81b53

View file

@ -98,6 +98,7 @@ const registerCreateBlockTags = (event) => {
event.add('create:fan_processing_catalysts/splashing', 'tfc:fluid/spring_water')
event.add('create:chest_mounted_storage', '#forge:chests/wooden')
event.add('create:chest_mounted_storage', 'framedblocks:framed_chest')
}
@ -123,5 +124,6 @@ const registerCreateFluidTags = (event) => {
event.add('create:fan_processing_catalysts/splashing', 'tfc:spring_water')
//Hose Pulley Infinites
event.add('create:bottomless/allow', 'tfg:semiheavy_ammoniacal_water')
event.remove('create:bottomless/allow', 'minecraft:lava')
}