diff options
author | Cow <cow@volloeko.de> | 2020-12-21 19:34:50 +0100 |
---|---|---|
committer | Cow <cow@volloeko.de> | 2020-12-21 19:34:50 +0100 |
commit | 50fe638726f9f684004365bb99c3117acead8cd0 (patch) | |
tree | 90b8213e2b7459532778cc88ca0f68489d824429 /src/main/java/de/cowtipper/cowlection/command/MooCommand.java | |
parent | 1f58cab966b15f12f4dd979f48e047c936c5841a (diff) | |
download | Cowlection-50fe638726f9f684004365bb99c3117acead8cd0.tar.gz Cowlection-50fe638726f9f684004365bb99c3117acead8cd0.tar.bz2 Cowlection-50fe638726f9f684004365bb99c3117acead8cd0.zip |
Removed obsolete dungeons detection code
Diffstat (limited to 'src/main/java/de/cowtipper/cowlection/command/MooCommand.java')
-rw-r--r-- | src/main/java/de/cowtipper/cowlection/command/MooCommand.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/de/cowtipper/cowlection/command/MooCommand.java b/src/main/java/de/cowtipper/cowlection/command/MooCommand.java index 51a14fe..cf6b388 100644 --- a/src/main/java/de/cowtipper/cowlection/command/MooCommand.java +++ b/src/main/java/de/cowtipper/cowlection/command/MooCommand.java @@ -150,7 +150,7 @@ public class MooCommand extends CommandBase { minutes -= hours * 60; main.getChatHelper().sendMessage(EnumChatFormatting.YELLOW, msgPrefix + " loaded around " + EnumChatFormatting.GOLD + days + " ingame days " - + EnumChatFormatting.YELLOW + "(= less than " + EnumChatFormatting.GOLD + (hours > 0 ? hours + " hours " : "") + (minutes > 0 ? minutes + " mins " : "") + ")"); + + EnumChatFormatting.YELLOW + "(= less than" + EnumChatFormatting.GOLD + (hours > 0 ? " " + hours + " hours" : "") + (minutes > 0 ? " " + minutes + " mins" : "") + ")"); }, 20); } //endregion |