1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-03 00:46:55 +02:00

More fixes. Estates skill is now handled as a Bonus.

This commit is contained in:
DjWarmonger
2011-06-24 18:16:28 +00:00
parent 37cd2b7394
commit 7dce558e28
3 changed files with 7 additions and 5 deletions

View File

@ -1224,6 +1224,8 @@ void CGHeroInstance::updateSkill(int which, int val)
skillVal = 5 << (val-1); break;
case FIRST_AID:
skillVal = 25 + 25*val; break;
case ESTATES:
skillVal = 125 << (val-1); break;
}