aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaanuel <none@none>2009-12-10 12:53:02 -0300
committermaanuel <none@none>2009-12-10 12:53:02 -0300
commitb3d1b0ef3e0701b0c5935c88476b4b6ae0155d9a (patch)
tree39bf611894ee8556f2033cb274de711fa0caf706
parentd076f517030ae7bb69c7d13d23fa984057c9e36e (diff)
Fix issue in skill points by MetaphysicalDrama, tested by Gyullo. Closes #599
--HG-- branch : trunk
-rw-r--r--src/game/Player.cpp2
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 )
{