#Casting Recipe doesnt work
28 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
bump
errors? logs?
server logs or mc logs? does it give any warnings about the recipe or input
This seems like just the fluid tag not being recognized.
The syntax doesn't seem wrong, did you register the fluid tag correctly?
Paste version of client.log, server.log, startup.log from @wild kernel
not sure which apply
okay, this registers the fluid but not the tag
You'll need
Example
ServerEvents.tags('fluid', e => {
e.add('forge:crude_oil', 'tfmg:crude_oil_fluid')
})
Here's an example on server side, adapt this to your case. I think there's a way to add the tag at registration too.
yeah, the fluid builder has a .tag() method, add that tag to the fluid
Example:
e.create('kubejs:crystal_growth_accelerator')
.thinTexture(0xb062be)
.bucketColor(0xb062be)
.displayName('Crystal Growth Accelerator')
.tag('kubejs:accelerants')
wait would that set tfmg crude oil as a forge crude oil or forge crude oil as tfmg crude oil? im confused
arguments are (tag, fluidId)
ok
do you have probejs?
yes
does that completion show up for you?
(also I think it's probably better to do this on fluid registration then) instead of in serverevents
it works! Thanks!