Added xp gain on killing NPCs, fixed some bugs, added 2 new config options

This commit is contained in:
Light2
2014-03-26 23:37:10 +01:00
parent d1a7f20177
commit c3772e3246
27 changed files with 228 additions and 208 deletions
+2 -8
View File
@@ -64,14 +64,8 @@ public class WeatherService {
weatherStability.put(planet, stability);
currentWeatherMap.put(planet, defaultWeather);
scheduler.scheduleAtFixedRate(new Runnable() {
@Override
public void run() {
runWeatherCycle(planet);
}
scheduler.scheduleAtFixedRate(() -> {
runWeatherCycle(planet);
}, 30, 30, TimeUnit.MINUTES);
}