diff options
author | Haru <haru@dotalux.com> | 2015-05-08 16:15:07 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-05-08 16:21:05 +0200 |
commit | ad9a14992cde8ad6759263da37e723b2b1825981 (patch) | |
tree | f6c168973bb2d2c5f243ad1c5688ae15439dcc5c /npc/cities/yuno.txt | |
parent | 513059cad7510c20f44e1a19f731efbe2f28dbec (diff) | |
download | hercules-ad9a14992cde8ad6759263da37e723b2b1825981.tar.gz hercules-ad9a14992cde8ad6759263da37e723b2b1825981.tar.bz2 hercules-ad9a14992cde8ad6759263da37e723b2b1825981.tar.xz hercules-ad9a14992cde8ad6759263da37e723b2b1825981.zip |
Replaced checkre() calls with constants
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/cities/yuno.txt')
-rw-r--r-- | npc/cities/yuno.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/cities/yuno.txt b/npc/cities/yuno.txt index 8ecc4910b..cda19d322 100644 --- a/npc/cities/yuno.txt +++ b/npc/cities/yuno.txt @@ -367,10 +367,10 @@ yuno,142,183,5 script Airship Representative 4W_SAILOR,{ next; switch(select("Prontera:Izlude:Geffen:Morroc:Payon:Alberta:Comodo:Cancel")) { case 1: callsub S_Warp,"prontera",116,72; - case 2: if (checkre(0)) callsub S_Warp,"izlude",128,98; else callsub S_Warp,"izlude",94,103; + case 2: if (RENEWAL) callsub S_Warp,"izlude",128,98; else callsub S_Warp,"izlude",94,103; case 3: callsub S_Warp,"geffen",120,39; case 4: callsub S_Warp,"morocc",156,46; - case 5: if (checkre(0)) callsub S_Warp,"payon",162,59; else callsub S_Warp,"payon",69,100; + case 5: if (RENEWAL) callsub S_Warp,"payon",162,59; else callsub S_Warp,"payon",69,100; case 6: callsub S_Warp,"alberta",117,56; case 7: callsub S_Warp,"comodo",209,143; case 8: close; |