diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-21 20:21:15 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-21 20:21:15 -0300 |
commit | 8cae7535dfb688058618b665e7a648632b78c982 (patch) | |
tree | 5af76bcbcf24e55833283caaa8ba245cd542b0da /npc/functions/nurse.txt | |
parent | 77f4e213fa9f5a4f5a370aa0eace748aaac90b74 (diff) | |
download | serverdata-8cae7535dfb688058618b665e7a648632b78c982.tar.gz serverdata-8cae7535dfb688058618b665e7a648632b78c982.tar.bz2 serverdata-8cae7535dfb688058618b665e7a648632b78c982.tar.xz serverdata-8cae7535dfb688058618b665e7a648632b78c982.zip |
Fixes
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; } |