Fixed BWM
This commit is contained in:
parent
02cbd3a90a
commit
da4f635f09
1 changed files with 2 additions and 2 deletions
|
@ -34,13 +34,13 @@ public class Saw {
|
||||||
Block block = ((ItemBlock) stack.getItem()).getBlock();
|
Block block = ((ItemBlock) stack.getItem()).getBlock();
|
||||||
ItemStack[] outputs = InputHelper.toStacks(output);
|
ItemStack[] outputs = InputHelper.toStacks(output);
|
||||||
SawRecipe r = new SawRecipe(block, stack.getMetadata(), Arrays.asList(outputs));
|
SawRecipe r = new SawRecipe(block, stack.getMetadata(), Arrays.asList(outputs));
|
||||||
ModTweaker.LATE_ADDITIONS.add(new BMAdd("Set Saw Recipe", SawManager.INSTANCE, Lists.newArrayList(r)));
|
ModTweaker.LATE_ADDITIONS.add(new BMAdd("Set Saw Recipe", SawManager.WOOD_SAW, Lists.newArrayList(r)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ZenMethod
|
@ZenMethod
|
||||||
public static void remove(IItemStack input) {
|
public static void remove(IItemStack input) {
|
||||||
ModTweaker.LATE_REMOVALS.add(new BMRemove("Remove Saw Recipe", SawManager.INSTANCE, InputHelper.toStack(input)));
|
ModTweaker.LATE_REMOVALS.add(new BMRemove("Remove Saw Recipe", SawManager.WOOD_SAW, InputHelper.toStack(input)));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue