fix?
This commit is contained in:
parent
10ff006eb4
commit
3c7ba27953
2
pom.xml
2
pom.xml
@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>xyz.mcutils</groupId>
|
||||
<artifactId>mcutils-java-library</artifactId>
|
||||
<version>1.2.2</version>
|
||||
<version>1.2.3</version>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user