Skip to content

Commit

Permalink
Fixed 'removeRecipesForInput' in Crusher Craftweaker compat not worki…
Browse files Browse the repository at this point in the history
…ng, closes #2982
  • Loading branch information
BluSunrize committed May 7, 2018
1 parent b247b8f commit b01b811
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Fixed spawn interdictors (Electric Lanterns, etc) not being removed on chunk unload (codewarrior0)
- Fixed Metal Press animations and sounds with customized recipe times (codewarrior0)
- Fixed some potential crashes in networking and reduced packet size (JamiesWhiteShirt)
- Fixed 'removeRecipesForInput' in Crusher Craftweaker compat not working (BluSunrize)
- Reduced the amount of ItemStacks being copied in rendering and recipe checking (Malte)
- Translations Added/Updated: ja_jp (iceink001), zh_CN (DYColdWind)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public String describe()
@ZenMethod
public static void removeRecipesForInput(IItemStack input)
{
CraftTweakerAPI.apply(new Remove(CraftTweakerHelper.toStack(input)));
CraftTweakerAPI.apply(new RemoveForInput(CraftTweakerHelper.toStack(input)));
}

private static class RemoveForInput implements IAction
Expand Down

0 comments on commit b01b811

Please sign in to comment.