Проблемы c ic2

Версия Minecraft
1.12.2
API
Forge
13
0
Добрый день!
Решил я добавить рецепт для машины из ic2 режущий механизм, но столкнулся с ошибкой в InteliJ.

'RecipeInputItemStack(net.minecraft.item.ItemStack)' is not public in 'ic2.core.recipe.RecipeInputItemStack'. Cannot be accessed from outside package
RecipeCutterMachine:
package industry.recipe;

import ic2.api.recipe.Recipes;
import ic2.core.recipe.RecipeInputItemStack;
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemStack;

public class RecipeCutterMachine  {

    static void AddRecipe ()
    {
        Recipes.blockcutter.addRecipe(new RecipeInputItemStack(new ItemStack(Blocks.STONE)), null, false, new ItemStack(Blocks.COBBLESTONE));
    }

}
build.gradle:
dependencies {
    minecraft 'net.minecraftforge:forge:1.12.2-14.23.5.2855'
    compile 'net.industrial-craft:industrialcraft-2:2.8.221-ex112:api'
    compile 'net.industrial-craft:industrialcraft-2:2.8.221-ex112:dev'
}

repositories {
    maven {
        name = "ic2"
        url = "http://maven.ic2.player.to/"
    }
 }
 
7,099
324
1,510
7,099
324
1,510
Конструктор RecipeInputItemStack требует два аргумента, а ты ему даешь один

Перед тем, как садиться за моддинг рекомендую научиться программировать и читать на английском

dev и api подключены как библиотеки
Проблема не подключении, а в том, как ты пытаешься юзать те библиотеки
 
7,099
324
1,510
Сверху