diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-07 01:10:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-07 01:10:24 -0300 |
commit | dcd3e4d245df049cbf8cb62ce55a86f252b078d8 (patch) | |
tree | 7eeb73d12829102f3b9e84cab115b82923462de9 | |
parent | df8a923e62731e4a5b856f077ef06301e1262e2a (diff) | |
download | serverdata-dcd3e4d245df049cbf8cb62ce55a86f252b078d8.tar.gz serverdata-dcd3e4d245df049cbf8cb62ce55a86f252b078d8.tar.bz2 serverdata-dcd3e4d245df049cbf8cb62ce55a86f252b078d8.tar.xz serverdata-dcd3e4d245df049cbf8cb62ce55a86f252b078d8.zip |
[skip ci] Try to fix bad operand
-rw-r--r-- | npc/functions/lockpicks.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/lockpicks.txt b/npc/functions/lockpicks.txt index 1409165f8..4252b4e1f 100644 --- a/npc/functions/lockpicks.txt +++ b/npc/functions/lockpicks.txt @@ -88,7 +88,7 @@ function script LockPicking { // The biggie is that you're running against time, here!!! } - if (@pos > .@d) { + if (@pos >= .@d) { THIEF_EXP += .@d*.@m; return 1; } |