mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
fixed (#1983)
This commit is contained in:
+6
-3
@@ -1333,9 +1333,12 @@ void Client::SetAARecastTimer(AA::Rank *rank_in, int32 spell_id) {
|
||||
return;
|
||||
}
|
||||
|
||||
//calculate AA cooldown
|
||||
int timer_duration = rank_in->recast_time - GetAlternateAdvancementCooldownReduction(rank_in);
|
||||
|
||||
int timer_duration = rank_in->recast_time;
|
||||
|
||||
if (timer_duration) {
|
||||
timer_duration = rank_in->recast_time - GetAlternateAdvancementCooldownReduction(rank_in);
|
||||
}
|
||||
|
||||
if (timer_duration <= 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user