diff options
| author | Lulonaut <lulonaut@lulonaut.tech> | 2023-08-30 13:17:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-30 21:17:48 +1000 |
| commit | 7b1ec0196ec068a469eb49fedc624347dd2a9158 (patch) | |
| tree | dabd66b871c681474c8843b1f76131b9e0b0f64a /src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java | |
| parent | 25440fae997ec65ac8aef795d746b91a9466c462 (diff) | |
| download | notenoughupdates-7b1ec0196ec068a469eb49fedc624347dd2a9158.tar.gz notenoughupdates-7b1ec0196ec068a469eb49fedc624347dd2a9158.tar.bz2 notenoughupdates-7b1ec0196ec068a469eb49fedc624347dd2a9158.zip | |
Fix bestiary page in PV (#805)
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java b/src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java index 5f1cc247..c30f869e 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java @@ -83,6 +83,7 @@ public class Constants { public static JsonObject ESSENCESHOPS; public static JsonObject SBLEVELS; public static JsonObject MUSEUM; + public static JsonObject BESTIARY; private static final ReentrantLock lock = new ReentrantLock(); @@ -109,6 +110,7 @@ public class Constants { ESSENCESHOPS = Utils.getConstant("essenceshops", gson); SBLEVELS = Utils.getConstant("sblevels", gson); MUSEUM = Utils.getConstant("museum", gson); + BESTIARY = Utils.getConstant("bestiary", gson); parseEssenceCosts(); } catch (Exception ex) { |
