diff options
| author | maanuel <none@none> | 2009-12-10 12:53:02 -0300 |
|---|---|---|
| committer | maanuel <none@none> | 2009-12-10 12:53:02 -0300 |
| commit | b3d1b0ef3e0701b0c5935c88476b4b6ae0155d9a (patch) | |
| tree | 39bf611894ee8556f2033cb274de711fa0caf706 /src | |
| parent | d076f517030ae7bb69c7d13d23fa984057c9e36e (diff) | |
Fix issue in skill points by MetaphysicalDrama, tested by Gyullo. Closes #599
--HG--
branch : trunk
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/Player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 4ad1098e019..bf9f1f63c62 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -5437,7 +5437,7 @@ bool Player::UpdateSkillPro(uint16 SkillId, int32 Chance, uint32 step) if (!MaxValue || !SkillValue || SkillValue >= MaxValue ) return false; - int32 Roll = irand(1,100); + int32 Roll = irand(1,1000); if ( Roll <= Chance ) { |
