Formatted TnT Commands/Added Alias for Missions

And Few Code Clean Ups From Last Week
This commit is contained in:
Driftay
2019-08-17 15:02:38 -04:00
parent a7f0cac597
commit f497f96b94
13 changed files with 443 additions and 565 deletions

View File

@@ -17,7 +17,7 @@ public class LocationTypeAdapter implements JsonSerializer<Location>, JsonDeseri
object.add("x", new JsonPrimitive(location.getX()));
object.add("y", new JsonPrimitive(location.getY()));
object.add("z", new JsonPrimitive(location.getZ()));
object.add("world", new JsonPrimitive(location.getWorld().toString()));
object.add("world", new JsonPrimitive(location.getWorld().getName()));
return object;
} catch (Exception ex) {
ex.printStackTrace();