diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/014-2/guards.txt | 1 | ||||
-rw-r--r-- | npc/020-4/gambler.txt | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/npc/014-2/guards.txt b/npc/014-2/guards.txt index e2a2f463e..20a77907e 100644 --- a/npc/014-2/guards.txt +++ b/npc/014-2/guards.txt @@ -29,7 +29,6 @@ } else { mesn; mesq l("In fact, it is flooded at the moment. Come back later."); - next; } close; diff --git a/npc/020-4/gambler.txt b/npc/020-4/gambler.txt index 5093c0c3f..bf81a131a 100644 --- a/npc/020-4/gambler.txt +++ b/npc/020-4/gambler.txt @@ -19,7 +19,7 @@ case 13: return l("Joker"); break; default: - return atoi(getarg(0)+1); + return getarg(0)+1; } } |