This skill bonus was suppose to only apply to monks with epics (#1364)

This also scales up to 280 skill, so under that, you don't get as high
of a bonus
This commit is contained in:
Michael Cook (mackal) 2021-05-19 19:40:51 -04:00 committed by GitHub
parent a59ffc6e6b
commit b65cf4c081
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3014,9 +3014,10 @@ int Mob::GetHandToHandDelay(void)
epic = 280;
else if (GetRace() == IKSAR)
iksar = 1;
if (epic > skill)
skill = epic;
return iksar - skill / 21 + 38;
// the delay bonus from the monk epic scales up to a skill of 280
if (epic >= skill)
epic = skill;
return iksar - epic / 21 + 38;
}
int delay = 35;