Misc fixes

This commit is contained in:
hondacrx
2022-02-28 14:16:57 -05:00
parent 03c646d2c8
commit b4a59ea746
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ namespace Game.AI
DoCast(spellId);
AISpellInfoType info = GetAISpellInfo(spellId, me.GetMap().GetDifficultyID());
if (info != null)
_events.ScheduleEvent(spellId, info.cooldown + RandomHelper.Rand32() % info.cooldown);
_events.ScheduleEvent(spellId, info.cooldown, info.cooldown * 2);
}
else
DoMeleeAttackIfReady();