This commit is contained in:
asayre 2006-08-30 03:24:57 +00:00
parent 4386cbac99
commit 71e80d5949
16 changed files with 63 additions and 103 deletions

View file

@ -262,7 +262,7 @@ namespace Server.Items
val += targ.SkillsTotal / 10;
if ( val > 700 )
val = 700 + ((val - 700) * (3 / 11));
val = 700 + (int)((val - 700) * (3.0 / 11));
BaseCreature bc = targ as BaseCreature;