From 0b22f03610f5db4ab4c4f8d32a8c5534c2465dde Mon Sep 17 00:00:00 2001 From: P3pp3rF1y Date: Thu, 31 Oct 2024 20:20:40 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Fixed=20storage=20input?= =?UTF-8?q?=20block=20to=20accept=20more=20than=2064=20max=20stack=20size?= =?UTF-8?q?=20if=20stack=20has=20this=20set=20using=20MAX=5FSTACK=5FSIZE?= =?UTF-8?q?=20component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gradle.properties | 2 +- .../sophisticatedstorage/block/StorageInputBlockEntity.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 674fa732c..303fc18c7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ loader_version_range=[4,) mod_id=sophisticatedstorage mod_name=Sophisticated Storage mod_license=GNU General Public License v3.0 -mod_version=0.10.45 +mod_version=0.10.46 mod_group_id=sophisticatedstorage mod_authors=P3pp3rF1y, Ridanisaurus mod_description=Fancy and functional storage containers. diff --git a/src/main/java/net/p3pp3rf1y/sophisticatedstorage/block/StorageInputBlockEntity.java b/src/main/java/net/p3pp3rf1y/sophisticatedstorage/block/StorageInputBlockEntity.java index 22c05b0d5..fd3fb80f4 100644 --- a/src/main/java/net/p3pp3rf1y/sophisticatedstorage/block/StorageInputBlockEntity.java +++ b/src/main/java/net/p3pp3rf1y/sophisticatedstorage/block/StorageInputBlockEntity.java @@ -70,7 +70,7 @@ public int getSlots() { @Override public int getSlotLimit(int slot) { - return 64; + return 99; } @Override