View Single Post
  #4  
Old 10-26-2006, 06:55 PM
cbodmer
Fire Beetle
 
Join Date: Oct 2006
Posts: 24
Default

Open special_attacks.cpp in an editor, go to line 964 and change:

bool did_attack;

to

bool did_attack=false;

Try to compile again and see if it works any better. From looking at the code, the variable did_attack is in undefined state if the switch doesn't enter any case statements, ie if GetClass() is DRUID or WIZARD for example.

-Chris
Reply With Quote