aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-07-20 13:24:57 +0200
committerGitHub <noreply@github.com>2022-07-20 13:24:57 +0200
commit8209ae8cc7dc6476a96547534efe991049e8b49b (patch)
tree729c6f7de3f92046d0e24d4fad5f62e0e9cdb0d5 /src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java
parente91d0907148e08352f3679324dc3e6460de1be38 (diff)
downloadnotenoughupdates-8209ae8cc7dc6476a96547534efe991049e8b49b.tar.gz
notenoughupdates-8209ae8cc7dc6476a96547534efe991049e8b49b.tar.bz2
notenoughupdates-8209ae8cc7dc6476a96547534efe991049e8b49b.zip
Added trophy reward overlay (#192)
* added trophy reward overlay * (hopefully) fixed infer "no crash" ~ jani * fix efe code Co-authored-by: Lorenz <ESs95s3P5z8Pheb> Co-authored-by: nopo <noahogno@gmail.com>
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.java2
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 3230714a..5279ed73 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java
@@ -69,6 +69,7 @@ public class Constants {
public static JsonObject ESSENCECOSTS;
public static JsonObject FAIRYSOULS;
public static JsonObject REFORGESTONES;
+ public static JsonObject TROPHYFISH;
private static final ReentrantLock lock = new ReentrantLock();
@@ -88,6 +89,7 @@ public class Constants {
ESSENCECOSTS = Utils.getConstant("essencecosts", gson);
FAIRYSOULS = Utils.getConstant("fairy_souls", gson);
REFORGESTONES = Utils.getConstant("reforgestones", gson);
+ TROPHYFISH = Utils.getConstant("trophyfish", gson);
} catch (Exception ex) {
ex.printStackTrace();
} finally {