diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/TODO.txt | 2 | ||||
-rw-r--r-- | npc/functions/lockpicks.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/TODO.txt b/npc/functions/TODO.txt index 2cacec81b..8060fe579 100644 --- a/npc/functions/TODO.txt +++ b/npc/functions/TODO.txt @@ -86,7 +86,7 @@ function script ToDoMerc { } if (@pos >= .@d) { - MERC_EXP += .@d*.@m; + MERC_EXP += .@d*.@m-MERC_RANK; return 1; } } diff --git a/npc/functions/lockpicks.txt b/npc/functions/lockpicks.txt index 055500cf6..72811d7f9 100644 --- a/npc/functions/lockpicks.txt +++ b/npc/functions/lockpicks.txt @@ -86,7 +86,7 @@ function script LockPicking { } if (@pos >= .@d) { - THIEF_EXP += .@d*.@m; + THIEF_EXP += .@d*.@m-THIEF_RANK; return 1; } } |