diff options
Diffstat (limited to 'world/map/npc/functions/inn.txt')
-rw-r--r-- | world/map/npc/functions/inn.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/world/map/npc/functions/inn.txt b/world/map/npc/functions/inn.txt index 271a4652..45ed4052 100644 --- a/world/map/npc/functions/inn.txt +++ b/world/map/npc/functions/inn.txt @@ -6,9 +6,10 @@ function|script|Inn|, mes "\"Would you like to rest? It's only " + @cost + " gp.\""; next; menu - "Yes", -, + "Yes", L_Next, "No", L_No; +L_Next: if (Zeny < @cost) goto L_NoMoney; set Zeny, Zeny - @cost; |