Charcoal Pile
ModTweaker allows you to add or remove forestry Charcoal Wall Recipes
Calling
You can call the package using mods.forestry.CharcoalWall
Recipe Removal
//mods.forestry.CharcoalWall.removeWall(IBlock block);mods.forestry.CharcoalWall.removeWall(<minecraft:bedrock>.asBlock());
//mods.forestry.CharcoalWall.removeWallState(IBlockState state);mods.forestry.CharcoalWall.removeWallState(<blockstate:minecraft:bedrock>);
//Will fail if the stack cannot be converted to a block!//mods.forestry.CharcoalWall.removeWallStack(IItemStack stack);mods.forestry.CharcoalWall.removeWallStack(<minecraft:bedrock>);
Recipe Addition
amount
states the amount of charcoal the wall will provide.
//mods.forestry.CharcoalWall.addWall(IBlock block, int amount);mods.forestry.CharcoalWall.addWall(<minecraft:bedrock>.asBlock(), 10);
//mods.forestry.CharcoalWall.addWallState(IBlockState state, int amount);mods.forestry.CharcoalWall.addWallState(<blockstate:minecraft:bedrock>, 10);
//Will fail if the stack cannot be converted to a block!//mods.forestry.CharcoalWall.addWallStack(IItemStack stack, int amount);mods.forestry.CharcoalWall.addWallStack(<minecraft:bedrock>, 10);