Неработает mods.avaritia.Compressor.add(<avaritia:singularity>, 200, <thermalfoundation:storage:6>);

Версия Minecraft
1.12.2
API
Forge
Когда захожу в маин выдаёт ошибку
ERROR: recipes.zs:14 > a method available but none matches the parameters
((Zen Type Native: craft tweaker.item.Itemstack, int, Zen Type Native:
craft tweaker.item.Itemstack)
This is usually an error in your script, not in the mod
add(string, Zen Type Native: craft tweaker.item.Itemstack, int, Zen Type Native:
crafttweaker.item.IIngredient, Optional bool)
помогите
если что писал крафт вот так mods.avaritia.Compressor.add(<avaritia:singularity>, 200, <thermalfoundation:storage:6>);
 
Решение
Пропустил параметр
add(string, Zen Type Native: craft tweaker.item.Itemstack, int, Zen Type Native: crafttweaker.item.IIngredient, Optional bool)

Насколько я помню, на его место можно empty string поставить т.е.
Код:
mods.avaritia.Compressor.add("", <avaritia:singularity>, 200, <thermalfoundation:storage:6>);
12
4
3
Пропустил параметр
add(string, Zen Type Native: craft tweaker.item.Itemstack, int, Zen Type Native: crafttweaker.item.IIngredient, Optional bool)

Насколько я помню, на его место можно empty string поставить т.е.
Код:
mods.avaritia.Compressor.add("", <avaritia:singularity>, 200, <thermalfoundation:storage:6>);
 
Сверху