From 658e10b12dfd143d04361d574bd30aedacfaae97 Mon Sep 17 00:00:00 2001 From: SpaceToad Date: Tue, 6 May 2014 00:10:51 +0200 Subject: [PATCH] fixed max size of library slots, close #1710 --- common/buildcraft/builders/TileBlueprintLibrary.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/buildcraft/builders/TileBlueprintLibrary.java b/common/buildcraft/builders/TileBlueprintLibrary.java index 8ecd38d5..1bae7fbb 100644 --- a/common/buildcraft/builders/TileBlueprintLibrary.java +++ b/common/buildcraft/builders/TileBlueprintLibrary.java @@ -183,7 +183,7 @@ public class TileBlueprintLibrary extends TileBuildCraft implements IInventory { @Override public int getInventoryStackLimit() { - return 64; + return 1; } @Override