diff options
Diffstat (limited to 'npc/functions/nurse.txt')
-rw-r--r-- | npc/functions/nurse.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/functions/nurse.txt b/npc/functions/nurse.txt index b1424126e..53b66cc90 100644 --- a/npc/functions/nurse.txt +++ b/npc/functions/nurse.txt @@ -43,7 +43,7 @@ function script Nurse { else .@price=(.@price/2); // Skip menu flag - if (!.@d & 2) + if (!(.@d & 2)) return .@price; mesq l("For you, it'll be @@ GP.", .@price); @@ -76,4 +76,5 @@ function script Nurse { close; }//&2 + return; } |