diff --git a/pom.xml b/pom.xml
index 773a270..f559273 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
xyz.mcutils
mcutils-java-library
- 1.2.2
+ 1.2.3
17
diff --git a/src/main/java/xyz/mcutils/models/server/MinecraftServer.java b/src/main/java/xyz/mcutils/models/server/MinecraftServer.java
index 4612e06..ec8f473 100644
--- a/src/main/java/xyz/mcutils/models/server/MinecraftServer.java
+++ b/src/main/java/xyz/mcutils/models/server/MinecraftServer.java
@@ -44,7 +44,7 @@ public class MinecraftServer {
*/
private GeoLocation location;
- @AllArgsConstructor @Getter
+ @Getter
private static class MOTD {
/**
@@ -108,31 +108,31 @@ public class MinecraftServer {
/**
* The location of the server.
*/
- @AllArgsConstructor @Getter
+ @Getter
public static class GeoLocation {
/**
* The country of the server.
*/
- private final String country;
+ private String country;
/**
* The region of the server.
*/
- private final String region;
+ private String region;
/**
* The city of the server.
*/
- private final String city;
+ private String city;
/**
* The latitude of the server.
*/
- private final double latitude;
+ private double latitude;
/**
* The longitude of the server.
*/
- private final double longitude;
+ private double longitude;
}
}