From fb1d4109a99cfdc0ca3b0d4a617f00a7f87a3e0e Mon Sep 17 00:00:00 2001 From: KayenEQ Date: Tue, 29 Apr 2014 22:23:25 -0400 Subject: [PATCH] Fix for AA stacking where first AA in series has only 1 rank. --- zone/AA.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/AA.cpp b/zone/AA.cpp index 87463247b..8566c09b5 100644 --- a/zone/AA.cpp +++ b/zone/AA.cpp @@ -1358,7 +1358,7 @@ void Client::SendAA(uint32 id, int seq) { if (aa_stack){ - if (saa->sof_current_level > 1 && value == 0) + if (saa->sof_current_level >= 1 && value == 0) saa->current_level = saa->sof_current_level+1; saa->max_level = saa->sof_max_level;