diff --git a/src/main/java/com/github/stachelbeere1248/zombiesutils/config/ZombiesUtilsConfig.java b/src/main/java/com/github/stachelbeere1248/zombiesutils/config/ZombiesUtilsConfig.java index 5d8a354..487a0a2 100644 --- a/src/main/java/com/github/stachelbeere1248/zombiesutils/config/ZombiesUtilsConfig.java +++ b/src/main/java/com/github/stachelbeere1248/zombiesutils/config/ZombiesUtilsConfig.java @@ -109,7 +109,9 @@ public class ZombiesUtilsConfig { } public static String getDefaultCategory() { - return defaultCategory.getString(); + String string = defaultCategory.getString(); + if (!ZombiesUtils.isHypixel()) string += "-practise"; + return string; } public static String getLanguage() { diff --git a/src/main/java/com/github/stachelbeere1248/zombiesutils/timer/Timer.java b/src/main/java/com/github/stachelbeere1248/zombiesutils/timer/Timer.java index 477d9be..0a40560 100644 --- a/src/main/java/com/github/stachelbeere1248/zombiesutils/timer/Timer.java +++ b/src/main/java/com/github/stachelbeere1248/zombiesutils/timer/Timer.java @@ -76,7 +76,7 @@ public class Timer { } try { - if (!ZombiesUtils.isHypixel()) record(passedRound, roundTime, gameTime); + record(passedRound, roundTime, gameTime); } catch (Exception e) { ZombiesUtils.getInstance().getLogger().error(ExceptionUtils.getStackTrace(e)); Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("Error saving splits"));