Implement structure random selection

This commit is contained in:
dfsek
2020-10-02 23:35:39 -07:00
parent 28ebd9c31d
commit 9d05aed065
4 changed files with 32 additions and 12 deletions

View File

@@ -20,4 +20,8 @@ public class Debug {
public static void error(String message) {
if(ConfigUtil.debug) main.getLogger().severe(message);
}
public static void stack(Exception e) {
if(ConfigUtil.debug) e.printStackTrace();
}
}