aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-08-19 13:05:33 +0200
committerGitHub <noreply@github.com>2022-08-19 13:05:33 +0200
commitb2d35428ac089ac104a2ea8212d8332c27a6cbee (patch)
treea6a15ea7884844a8aeb35f768eb21d75227b6cef /src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java
parent5d2aa40fdee044c0579f426bff279b9d631e306f (diff)
downloadnotenoughupdates-b2d35428ac089ac104a2ea8212d8332c27a6cbee.tar.gz
notenoughupdates-b2d35428ac089ac104a2ea8212d8332c27a6cbee.tar.bz2
notenoughupdates-b2d35428ac089ac104a2ea8212d8332c27a6cbee.zip
Dumb bugs (#232)
* fixing experimentation solver * fixing neu buttons not resetting properly after disabling trophy reward overlay or accessory bag overlay * fixed ah overlay
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java b/src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java
index d7b80a0e..5b3ea853 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/util/Utils.java
@@ -1982,4 +1982,8 @@ public class Utils {
public static String getOpenChestName() {
return SBInfo.getInstance().currentlyOpenChestName;
}
+
+ public static String getLastOpenChestName() {
+ return SBInfo.getInstance().lastOpenChestName;
+ }
}