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

View file

@ -43,8 +43,8 @@ public class LocalWeatherCommand implements CommandExecutor {
if (weather.shower) if (weather.shower)
colorize(sender, "&6Shower"); colorize(sender, "&6Shower");
colorize(sender, "&6Cloudiness: &b%f%&7%", weather.cloudiness * 100); colorize(sender, "&6Cloudiness: &b%f&7%%", weather.cloudiness * 100);
colorize(sender, "&6Humidity: &b%f%&7%", weather.humidity * 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, "&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, "&6Wind: &b%f&7m/s (gust %fm/s)", weather.windSpeed, weather.windGust);
colorize(sender, "&6Last update: &b%s UTC\n", formatTime(lastUpdate)); colorize(sender, "&6Last update: &b%s UTC\n", formatTime(lastUpdate));

View file

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