mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-03 04:16:19 -04:00
Added xp gain on killing NPCs, fixed some bugs, added 2 new config options
This commit is contained in:
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user