Fixed compile errors / New non-crappy undo system

This commit is contained in:
Anuken
2019-03-11 23:06:41 -04:00
parent 6c3ccb259f
commit 0fd0abc6c0
18 changed files with 392 additions and 316 deletions

View File

@@ -54,9 +54,9 @@ public class DesktopPlatform extends Platform{
if(world.getMap() == null){
presence.details = "Unknown Map";
}else if(!state.rules.waves){
presence.details = Strings.capitalize(world.getMap().name);
presence.details = Strings.capitalize(world.getMap().getDisplayName());
}else{
presence.details = Strings.capitalize(world.getMap().name) + " | Wave " + state.wave;
presence.details = Strings.capitalize(world.getMap().getDisplayName()) + " | Wave " + state.wave;
presence.largeImageText = "Wave " + state.wave;
}