Compare commits
3 commits
realweathe
...
master
Author | SHA1 | Date | |
---|---|---|---|
![]() |
1920d8dcc2 | ||
96454e22ec | |||
![]() |
f61783c1a5 |
3 changed files with 10 additions and 9 deletions
4
pom.xml
4
pom.xml
|
@ -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>
|
||||||
|
|
|
@ -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));
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue