diff options
| author | NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> | 2022-09-11 22:11:26 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-11 14:11:26 +0200 |
| commit | ef557a6f4dff5ed9ce13f26f41b55c60008e8eae (patch) | |
| tree | 9a7cf79bf899680e67fbc767c2fa5965fa2ecd39 /src/main/java/io/github/moulberry/notenoughupdates/miscgui | |
| parent | 47af0b3eee70a5c8d7c86fff19155a97a9204708 (diff) | |
| download | notenoughupdates-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.java | 2 |
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; } } |
