I'm fairly certain all mods support it.Just an off-topic question. Is there a way to tell right off the bat if a mod (any mod) supports that feature or not?
I'm fairly certain all mods support it.Just an off-topic question. Is there a way to tell right off the bat if a mod (any mod) supports that feature or not?
WrongI'm fairly certain all mods support it.
Unfortunately not otherwise Eyamaz and we(as in rest of the modpack team) wouldn't wish all mods supporting it. Some modders reference it in the documentation but for most it's either an undocumented feature or not working at allJust an off-topic question. Is there a way to tell right off the bat if a mod (any mod) supports that feature or not?
Wrong
Unfortunately not otherwise Eyamaz and we(as in rest of the modpack team) wouldn't wish all mods supporting it. Some modders reference it in the documentation but for most it's either an undocumented feature or not working at all
if (!id==0)
I think it would look more like
if (id != 0)
"if(id != 0)" is how you check if something is not equal to something else in Java. "if(!id==0)" errored when I tested it.Actually, no, the way it is written makes sense. It is basically saying (in layman's terms) if the id is equal to 0 then do whatever. It is checking for the zero before processing that particular block, item, etc.
So most likely the entire function reads something similar to run the function if id is NOT 0.
"if(id != 0)" is how you check if something is not equal to something else in Java. "if(!id==0)" errored when I tested it.