Currently attack_delay for mercs is not being set in the code. To fix it you can find the line in merc.cpp that says:
attack_speed = npc_type->attack_speed;
and insert a line under it that says
attack_delay = 36 + 36 * (npc_type->attack_speed / 100);
|