{
"type": "thermal:tree_extractor",
"trunk": "minecraft:jungle_log",
"leaves": "minecraft:jungle_leaves",
"result": {
"fluid": "thermal:latex",
"amount": 25
}
}```
```js
onEvent('jei.hide.fluids', e => {
e.hide([
"thermal:latex"
])
})```
I took the id of the latex which was in the json of the mod, but after having restarted the modpack, I always have the latex
#hide latex by thermal series
17 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
e.hide([
"thermal:latex"
]) should just be
e.hide('thermal:latex');
No need for the [ ]
One line or two, single or double quotes, doesn't matter.
That's how I write it
I use that in my own pack to hide fluids without issue.
I'll take a look at it right away 😉
I had put the [ ] because in the future I wanted to hide other fluid, bha thank you in any case I know where the error comes from now, do not put if you have 1 fluid or items to hide
Each fluid needs its own line
e.hide('thermal:latex');
e.hide('thermal:resin');
e.hide('thermal:tree_sap');
e.hide('thermal:whatever');
Same with items
ha, good to know, I thought it was like the items
Please close your ticket (with </ticket close:1054771505520717835> or the button atop this thread) once you resolved your issue! This also helps others that would like to help out, as they don't have to look into this thread to check if it has been resolved by now.
Do you have any other questions regarding your issue? Feel free to ask!
Note: You generally should create a new post for unrelated issues.
I've just tested it and it doesn't work
Please close your ticket (with </ticket close:1054771505520717835> or the button atop this thread) once you resolved your issue! This also helps others that would like to help out, as they don't have to look into this thread to check if it has been resolved by now.
Do you have any other questions regarding your issue? Feel free to ask!
Note: You generally should create a new post for unrelated issues.