#How to remove tag from fluid
16 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
should be the same way you remove it from an item
ServerEvents.tags('fluid', event => {
event.remove('minecraft:liquidtag', [
'minecraft:water',
])
})```
Thanks
Ticket re-opened!
Wait, for minecraft:liquidtag that's the tag I want to remove from the specific fluid?
nah thats just the example, this is just the modnamespace:tagname
theres a cool mod called "better tag tips" that lets you see tags better by shift clicking btw
I just use COFH core, it helps me see tags, at least in my modpack
I see, do I include the hashtag?
no hashtags in this js event.remove('minecraft:liquidtag', [
if you wanted to insert a hashtag in the list like so then yes itd define tags js [ '#minecraft:water', ])
Can't I do this as well?
event.remove('minecraft:water', 'namespace:fluid_name')```
sure
sounds good, i'll test it out when i can