aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoKM <mcazzyman@gmail.com>2021-08-14 22:02:59 +0200
committerDoKM <mcazzyman@gmail.com>2021-08-14 22:02:59 +0200
commitfb08aa9689264222eeda0c0196d0554ff543ab4b (patch)
treec0acb7f008526f9edd470d1530984414c9782542
parent537b92239998a4fbddae8f89cc8d71a2933dac72 (diff)
downloadNotEnoughUpdates-fb08aa9689264222eeda0c0196d0554ff543ab4b.tar.gz
NotEnoughUpdates-fb08aa9689264222eeda0c0196d0554ff543ab4b.tar.bz2
NotEnoughUpdates-fb08aa9689264222eeda0c0196d0554ff543ab4b.zip
Fixed being able to slot lock the 9th slot
also change log
-rw-r--r--Update Notes/2.0-Pre31.md1
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java1
2 files changed, 2 insertions, 0 deletions
diff --git a/Update Notes/2.0-Pre31.md b/Update Notes/2.0-Pre31.md
index 21f89fef..02da8b18 100644
--- a/Update Notes/2.0-Pre31.md
+++ b/Update Notes/2.0-Pre31.md
@@ -48,6 +48,7 @@
- Fixed not being able to use keybinds while hovering over locked slots.
- Fixed dungeon map appearing in boss room while holding bow (will be gone after switching from bow to another item).
- Fixed dwarven mines waypoints not working if dwarven mines overlay was disabled.
+- Fixed being able to slot lock the 9th slot.
### **Other**
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java
index cd128ebe..11351857 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/SlotLocking.java
@@ -310,6 +310,7 @@ public class SlotLocking {
}
public void toggleLock(int lockIndex) {
+ if(lockIndex == 8) return;
LockedSlot[] lockedSlots = getDataForProfile();
if(lockedSlots != null) {