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-09-23 15:08:16 +0200
committerGitHub <noreply@github.com>2022-09-23 15:08:16 +0200
commit21a353f09edc1623d339dd9f7eea639b35891d57 (patch)
tree0911353efab7419bc42c390adf7c44f80ad3f505 /src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java
parent005f9ef89baa3bde63fcfc188359034606506550 (diff)
downloadnotenoughupdates-21a353f09edc1623d339dd9f7eea639b35891d57.tar.gz
notenoughupdates-21a353f09edc1623d339dd9f7eea639b35891d57.tar.bz2
notenoughupdates-21a353f09edc1623d339dd9f7eea639b35891d57.zip
probably game changing rng meter changes (#295)
* probably game changing rng meter changes * Updating the rng score with data from repo. This is needed since hypixel doesn't show the exact values for selected items. (Only 3k instead of 3,100)
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 1d226dc8..ef030367 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/util/Constants.java
@@ -71,6 +71,7 @@ public class Constants {
public static JsonObject REFORGESTONES;
public static JsonObject TROPHYFISH;
public static JsonObject WEIGHT;
+ public static JsonObject RNGSCORE;
private static final ReentrantLock lock = new ReentrantLock();
@@ -92,6 +93,7 @@ public class Constants {
REFORGESTONES = Utils.getConstant("reforgestones", gson);
TROPHYFISH = Utils.getConstant("trophyfish", gson);
WEIGHT = Utils.getConstant("weight", gson);
+ RNGSCORE = Utils.getConstant("rngscore", gson);
} catch (Exception ex) {
ex.printStackTrace();
} finally {