aboutsummaryrefslogtreecommitdiff
path: root/me/Danker/commands
diff options
context:
space:
mode:
authorbowser0000 <bowser0000@gmail.com>2020-08-02 16:19:03 -0400
committerbowser0000 <bowser0000@gmail.com>2020-08-02 16:19:03 -0400
commit4655b12ae7cf1735bc951343fe2bc9679d7cb529 (patch)
tree7a367e983657e2c1f4e7f717121da5a6a010fa6b /me/Danker/commands
parent06cdf6cb989dd176614b1fd844031332b57aa624 (diff)
downloadSkyblockMod-4655b12ae7cf1735bc951343fe2bc9679d7cb529.tar.gz
SkyblockMod-4655b12ae7cf1735bc951343fe2bc9679d7cb529.tar.bz2
SkyblockMod-4655b12ae7cf1735bc951343fe2bc9679d7cb529.zip
Force US locale, fix Sea Witch string
Diffstat (limited to 'me/Danker/commands')
-rw-r--r--me/Danker/commands/LootCommand.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/me/Danker/commands/LootCommand.java b/me/Danker/commands/LootCommand.java
index 392e06c..5853cee 100644
--- a/me/Danker/commands/LootCommand.java
+++ b/me/Danker/commands/LootCommand.java
@@ -1,6 +1,7 @@
package me.Danker.commands;
import java.text.NumberFormat;
+import java.util.Locale;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
@@ -130,7 +131,7 @@ public class LootCommand extends CommandBase {
double timeNow = System.currentTimeMillis() / 1000;
String timeBetween;
String bossesBetween;
- NumberFormat nf = NumberFormat.getIntegerInstance();
+ NumberFormat nf = NumberFormat.getIntegerInstance(Locale.US);
if (arg1[0].equalsIgnoreCase("wolf")) {
if (wolfTime == -1) {
timeBetween = "Never";