diff options
Diffstat (limited to 'world/map/npc/021-1/eurni.txt')
-rw-r--r-- | world/map/npc/021-1/eurni.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/021-1/eurni.txt b/world/map/npc/021-1/eurni.txt index 3575ab1f..16a2ea77 100644 --- a/world/map/npc/021-1/eurni.txt +++ b/world/map/npc/021-1/eurni.txt @@ -7,7 +7,7 @@ L_Begin: if (BaseLevel < 10) goto L_TooYoung; - if (zeny < 10000) goto L_NoMoney; + if (Zeny < 10000) goto L_NoMoney; mes "[Eurni the Surgeon]"; mes "\"Are you tired of being what you are?\""; @@ -26,9 +26,9 @@ L_Begin: close; L_Change: - if (zeny < 10000) + if (Zeny < 10000) goto L_No_Money; - set zeny, zeny - 10000; + set Zeny, Zeny - 10000; changesex; close; |