Browse Source

hotzone removed from game

lakebane-master
FatBoy-DOTC 9 months ago
parent
commit
b583034b4e
  1. 2
      src/engine/server/world/WorldServer.java
  2. 30
      src/engine/workthreads/HourlyJobThread.java

2
src/engine/server/world/WorldServer.java

@ -436,7 +436,7 @@ public class WorldServer {
DbManager.SkillsBaseQueries.LOAD_ALL_MAX_SKILLS_FOR_CONTRACT(); DbManager.SkillsBaseQueries.LOAD_ALL_MAX_SKILLS_FOR_CONTRACT();
//pick a startup Hotzone //pick a startup Hotzone
ZoneManager.generateAndSetRandomHotzone(); //ZoneManager.generateAndSetRandomHotzone();
Logger.info("Loading All Players from database to Server Cache"); Logger.info("Loading All Players from database to Server Cache");
long start = System.currentTimeMillis(); long start = System.currentTimeMillis();

30
src/engine/workthreads/HourlyJobThread.java

@ -189,28 +189,28 @@ public class HourlyJobThread implements Runnable {
Logger.info("Hourly job is now running."); Logger.info("Hourly job is now running.");
try { //try {
// Use the same hotZone this hour up and until // Use the same hotZone this hour up and until
// the HotZone_Duration from the ConfigManager // the HotZone_Duration from the ConfigManager
if (ZoneManager.hotZone == null) //if (ZoneManager.hotZone == null)
ZoneManager.generateAndSetRandomHotzone(); // ZoneManager.generateAndSetRandomHotzone();
else //else
ZoneManager.hotZoneCycle = ZoneManager.hotZoneCycle + 1; // ZoneManager.hotZoneCycle = ZoneManager.hotZoneCycle + 1;
if (ZoneManager.hotZoneCycle > Integer.parseInt(ConfigManager.MB_HOTZONE_DURATION.getValue())) //if (ZoneManager.hotZoneCycle > Integer.parseInt(ConfigManager.MB_HOTZONE_DURATION.getValue()))
ZoneManager.generateAndSetRandomHotzone(); // ZoneManager.generateAndSetRandomHotzone();
if (ZoneManager.hotZone == null) { //if (ZoneManager.hotZone == null) {
Logger.error("Null HotZone returned from ZoneManager"); // Logger.error("Null HotZone returned from ZoneManager");
} else { //} else {
Logger.info("HotZone switched to: " + ZoneManager.hotZone.getName()); // Logger.info("HotZone switched to: " + ZoneManager.hotZone.getName());
} //}
} catch (Exception e) { //} catch (Exception e) {
Logger.error(e.toString()); // Logger.error(e.toString());
} //}
// Open or Close mines for the current mine window. // Open or Close mines for the current mine window.

Loading…
Cancel
Save