diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/lockpicks.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/lockpicks.txt b/npc/functions/lockpicks.txt index 1efd3c1ea..9e7ef4981 100644 --- a/npc/functions/lockpicks.txt +++ b/npc/functions/lockpicks.txt @@ -123,7 +123,7 @@ function script ArrestedChances { .@runaway+=limit(0, THIEF_RANK*15, 100); // real max 7.5% // Max runaway chance: 40% if (rand2(1000) < .@runaway) - return false - return true + return false; + return true; } |