Fixed a silly error - always good to return values we calculate

This commit is contained in:
Anna Rose 2011-07-05 22:15:52 -04:00
parent ab82883a2e
commit 9ee2972612

View File

@ -50,6 +50,8 @@ float GameVertex::calculate_attack()
attack = 0; attack = 0;
break; break;
} }
return attack;
} }