Fixed not being able to autocraft certain Modular Routers items, fixes #1290

This commit is contained in:
raoulvdberge
2017-11-27 21:12:10 +01:00
parent f5dbd441f0
commit 46699bc42f
2 changed files with 5 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
### 1.5.25
- Fixed not being able to autocraft different Storage Drawers' wood drawers (raoulvdberge)
- Fixed not being able to autocraft certain Modular Routers items (raoulvdberge)
### 1.5.24
- The Grid now displays last modified information (player name and date) and size on tooltips of stacks (raoulvdberge)

View File

@@ -179,6 +179,10 @@ public class Comparer implements IComparer {
stack.getTagCompound().removeTag("hammerDmg");
stack.getTagCompound().removeTag("cutterDmg");
break;
case "modularrouters":
stack.getTagCompound().removeTag("ModuleFilter");
stack.getTagCompound().removeTag("Flags");
break;
case "fluxnetworks":
stack.getTagCompound().removeTag("dropped");
stack.getTagCompound().removeTag("energy");