Skip to content
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.

Commit

Permalink
goddamnit
Browse files Browse the repository at this point in the history
  • Loading branch information
RealRTTV committed Jun 30, 2022
1 parent 4424eab commit a1bc970
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.14.6

# Mod Properties
mod_version = 3.0.2
mod_version = 3.0.3
maven_group = ca.rttv
archives_base_name = chatcalc

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/ca/rttv/chatcalc/EventHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class EventHandler {
}

private static DecimalFormat getDecimalFormat() {
return new DecimalFormat(json.get("decimalFormat").getAsString());
return new DecimalFormat(json.get("decimal_format").getAsString());
}

public static double convertIfRadians(double value) {
Expand Down Expand Up @@ -124,6 +124,6 @@ public static void readJson() {
}

public static boolean debugTokens() {
return Boolean.parseBoolean(json.get("debugTokens").getAsString());
return Boolean.parseBoolean(json.get("debug_tokens").getAsString());
}
}

0 comments on commit a1bc970

Please sign in to comment.