The Crafter can now only store 1 stack size pattern per slot

This commit is contained in:
raoulvdberge
2017-10-29 22:08:02 +01:00
parent e54314512f
commit 4cced6b4ba
2 changed files with 9 additions and 0 deletions

View File

@@ -39,6 +39,11 @@ public class NetworkNodeCrafter extends NetworkNode implements ICraftingPatternC
network.getCraftingManager().rebuild();
}
}
@Override
public int getSlotLimit(int slot) {
return 1;
}
};
private List<ICraftingPattern> actualPatterns = new ArrayList<>();