From 50fe638726f9f684004365bb99c3117acead8cd0 Mon Sep 17 00:00:00 2001 From: Cow Date: Mon, 21 Dec 2020 19:34:50 +0100 Subject: Removed obsolete dungeons detection code --- src/main/java/de/cowtipper/cowlection/command/MooCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/de/cowtipper/cowlection/command') 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 -- cgit