We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following script:
<recipetype:thermal:refinery>.addRecipe("mock_fluidless_custom_refinery_recipe", <item:minecraft:dirt>, [], <fluid:minecraft:lava> * 250, 500);
gives:
machines.zs:46:104: machines.zs:46:104: Empty array with unknown type
The actual error is that it is missing a parameter, the header is:
addRecipe(String name, Percentaged<IItemStack> output, IFluidStack[] outputFluids, CTFluidIngredient input, float experience, int energy)
in this case, experience / energy was left out but ZC complains about the empty array instead of the missing parameter.
experience
energy
There are no overloaded methods, just this one.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following script:
gives:
The actual error is that it is missing a parameter, the header is:
in this case,
experience
/energy
was left out but ZC complains about the empty array instead of the missing parameter.There are no overloaded methods, just this one.
The text was updated successfully, but these errors were encountered: