Compare commits

...

3 commits

Author SHA1 Message Date
Minecon724
1920d8dcc2
Make scale a double
All checks were successful
/ deploy (push) Successful in 38s
2025-01-18 11:43:29 +01:00
96454e22ec Fix /localweather
All checks were successful
/ deploy (push) Successful in 36s
2025-01-15 07:10:20 +01:00
Minecon724
f61783c1a5
[maven-release-plugin] prepare for next development iteration
All checks were successful
/ deploy (push) Successful in 1m20s
2024-11-06 17:29:01 +01:00
3 changed files with 10 additions and 9 deletions

View file

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>eu.m724</groupId>
<artifactId>realweather</artifactId>
<version>1.0.0-alpha-5</version>
<version>1.0.0-alpha-6-SNAPSHOT</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
@ -145,6 +145,6 @@
<scm>
<developerConnection>scm:git:git@git.m724.eu:Minecon724/realweather.git</developerConnection>
<tag>realweather-1.0.0-alpha-5</tag>
<tag>HEAD</tag>
</scm>
</project>

View file

@ -43,8 +43,8 @@ public class LocalWeatherCommand implements CommandExecutor {
if (weather.shower)
colorize(sender, "&6Shower");
colorize(sender, "&6Cloudiness: &b%f%&7%", weather.cloudiness * 100);
colorize(sender, "&6Humidity: &b%f%&7%", weather.humidity * 100);
colorize(sender, "&6Cloudiness: &b%f&7%%", weather.cloudiness * 100);
colorize(sender, "&6Humidity: &b%f&7%%", weather.humidity * 100);
colorize(sender, "&6Temperature: &b%f&7°C (feels like %f°C)", weather.temperature - 273.15, weather.temperatureApparent - 273.15);
colorize(sender, "&6Wind: &b%f&7m/s (gust %fm/s)", weather.windSpeed, weather.windGust);
colorize(sender, "&6Last update: &b%s UTC\n", formatTime(lastUpdate));

View file

@ -10,8 +10,8 @@ public class MapperConfig {
public boolean worldBlacklist;
public List<String> worlds;
public int scaleLatitude;
public int scaleLongitude;
public double scaleLatitude;
public double scaleLongitude;
public Coordinates point;
@ -21,12 +21,13 @@ public class MapperConfig {
mapperConfig.worldBlacklist = configuration.getBoolean("worldBlacklist");
mapperConfig.worlds = configuration.getStringList("worlds");
mapperConfig.scaleLatitude = configuration.getInt("dimensions.latitude");
mapperConfig.scaleLongitude = configuration.getInt("dimensions.longitude");
mapperConfig.scaleLatitude = configuration.getDouble("dimensions.latitude");
mapperConfig.scaleLongitude = configuration.getDouble("dimensions.longitude");
mapperConfig.point = new Coordinates(
configuration.getDouble("point.latitude"),
configuration.getDouble("point.longitude"));
configuration.getDouble("point.longitude")
);
return mapperConfig;
}