Skip to content
This repository has been archived by the owner on Oct 31, 2021. It is now read-only.

Axe Chopping CraftTweaker

Snownee edited this page May 28, 2019 · 6 revisions

Importing

import mods.cuisine.AxeChopping;

Add Recipes

void add(IItemStack input, IItemStack output);

void add(IOreDictEntry input, IItemStack output);

Remove Recipes By ID

void remove(string identifier);

Remove Recipes By Input

void remove(IItemStack input);

Remove Recipes By Output

void removeByOutput(IIngredient output);

Clear Recipes

void removeAll();

Determine If Axe Chopping Is Enabled

The result is set in configuration file.

boolean isEnabled();

Get Default Planks Output

The result is set in configuration file.

int getDefaultPlanksOutput();

Get Default Stick Output

The result is set in configuration file.

int getDefaultStickOutput();