use of betterwithaddons.tileentity.TileEntityLureTree.TreeFood in project BetterWithAddons by DaedalusGame.
the class LureTree method add.
@ZenMethod
public static void add(@NotNull IItemStack input, int food) {
ItemStack stack = CraftTweakerMC.getItemStack(input);
TreeFood r = new TreeFood(stack, food);
CraftTweaker.LATE_ACTIONS.add(new Add(r));
}
Aggregations