diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-1/ishi.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/003-1/ishi.txt b/npc/003-1/ishi.txt index f7f337a3f..a4cbb5a9c 100644 --- a/npc/003-1/ishi.txt +++ b/npc/003-1/ishi.txt @@ -28,7 +28,7 @@ // After level 50, the formula changes. We don't have exponential anymore. // Previous increase reached 67 and will stop at this value. @mpq_cost=((50*2/3) ** 2)-(50*2); - @mpq_cost+=(BaseLevel)*67; + @mpq_cost+=(BaseLevel-50)*67; // Of course... We still need to act as if exponent was still there... // So we raise it a bit each 3 levels @mpq_cost+=(BaseLevel/3)*3; |