aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/miscgui
diff options
context:
space:
mode:
authorNopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>2022-09-11 22:11:26 +1000
committerGitHub <noreply@github.com>2022-09-11 14:11:26 +0200
commitef557a6f4dff5ed9ce13f26f41b55c60008e8eae (patch)
tree9a7cf79bf899680e67fbc767c2fa5965fa2ecd39 /src/main/java/io/github/moulberry/notenoughupdates/miscgui
parent47af0b3eee70a5c8d7c86fff19155a97a9204708 (diff)
downloadnotenoughupdates-ef557a6f4dff5ed9ce13f26f41b55c60008e8eae.tar.gz
notenoughupdates-ef557a6f4dff5ed9ce13f26f41b55c60008e8eae.tar.bz2
notenoughupdates-ef557a6f4dff5ed9ce13f26f41b55c60008e8eae.zip
fixed backpacks when dont have fairy soul req (#264)
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/miscgui')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/miscgui/StorageOverlay.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/StorageOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/StorageOverlay.java
index 7e6b991c..27fea377 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/StorageOverlay.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/StorageOverlay.java
@@ -414,7 +414,7 @@ public class StorageOverlay extends GuiElement {
if (stackOnMouse != null) {
String stackDisplay = Utils.cleanColour(stackOnMouse.getDisplayName());
if (stackDisplay.startsWith("Backpack Slot ") || stackDisplay.startsWith("Empty Backpack Slot ") ||
- stackDisplay.startsWith("Ender Chest Page ")) {
+ stackDisplay.startsWith("Ender Chest Page ") || stackDisplay.startsWith("Locked Backpack Slot ")) {
stackOnMouse = null;
}
}