View Single Post
  #14  
Old 10-02-2008, 09:11 PM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Default

I missed this cut/paste error in the new Return Kick AA code:
Code:
int specl = GetAA(aaTechniqueofMasterWu) * 20;
should be:
Code:
int specl = defender->GetAA(aaTechniqueofMasterWu) * 20;
Reply With Quote