practise server implementation
This commit is contained in:
parent
20d9cf6ac7
commit
1cc41bb255
2 changed files with 4 additions and 2 deletions
|
@ -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() {
|
||||
|
|
|
@ -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"));
|
||||
|
|
Loading…
Add table
Reference in a new issue