corrected convention for naming auto attack job

This commit is contained in:
2024-05-26 20:17:15 -05:00
parent 1bbbc396bd
commit cbe9a30590
+1 -1
View File
@@ -555,7 +555,7 @@ public enum CombatManager {
AttackJob aj = new AttackJob(attacker, slot.ordinal(), true);
JobContainer job;
job = JobScheduler.getInstance().scheduleJob(aj, (System.currentTimeMillis() + delay)); // offset 1 millisecond so no overlap issue
timers.put("Attack" + slot, job);
timers.put("Attack" + slot.name(), job);
} else
Logger.error("Unable to find Timers for Character " + attacker.getObjectUUID());