Fix shadow siege boss timer

This commit is contained in:
Melledy
2026-07-21 04:33:18 -07:00
parent 06dc208305
commit 9c23fc1011
@@ -74,7 +74,6 @@ public class TraceHuntManager extends PlayerManager implements GameDatabaseObjec
this.level = 1; this.level = 1;
this.bossId = this.getControlData().getBossList()[0]; this.bossId = this.getControlData().getBossList()[0];
this.bossCreateTime = Nebula.getCurrentServerTime();
this.traceLogs = new ArrayList<>(); this.traceLogs = new ArrayList<>();
this.huntLogs = new ArrayList<>(); this.huntLogs = new ArrayList<>();
@@ -311,6 +310,7 @@ public class TraceHuntManager extends PlayerManager implements GameDatabaseObjec
// Complete // Complete
if (this.isHunting()) { if (this.isHunting()) {
this.bossCreateTime = Nebula.getCurrentServerTime();
logs.add(new TraceHuntLog(5)); logs.add(new TraceHuntLog(5));
break; break;
} }