summaryrefslogtreecommitdiff
path: root/npc/airports/lighthalzen.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/airports/lighthalzen.txt')
-rw-r--r--npc/airports/lighthalzen.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/airports/lighthalzen.txt b/npc/airports/lighthalzen.txt
index 959da9c96..89935a24a 100644
--- a/npc/airports/lighthalzen.txt
+++ b/npc/airports/lighthalzen.txt
@@ -38,14 +38,14 @@ lhz_airport,143,43,5 script Airport Staff#lhz_air1a::lhz_airport1 4_F_01,{
mes "where we offer nonstop";
mes "flights to Einbroch, Juno and Hugel.";
next;
- if (select("Board the Airship.:Cancel.") == 1) {
+ if (select("Board the Airship.", "Cancel.") == 1) {
mes "[Airport Staff]";
mes "The boarding fee is";
mes "1,200 zeny, but you can";
mes "waive the fee if you redeem";
mes "a Free Ticket for Airship.";
next;
- if (select("Yes:No") == 1) {
+ if (select("Yes", "No") == 1) {
if (countitem(Free_Flying_Ship_Ticket) > 0) {
delitem Free_Flying_Ship_Ticket,1;
warp "lhz_airport",148,51;
@@ -80,14 +80,14 @@ lhz_airport,143,49,3 script Arrival Staff#lhz_air2a::lhz_airport2 4_F_01,{
mes "main terminal if you are arriving from your flight. Otherwise, please";
mes "board the departing Airship to reach your intended destination.";
next;
- if (select("Exit to main terminal.:Cancel.") == 1) {
+ if (select("Exit to main terminal.", "Cancel.") == 1) {
mes "[Arrival Staff]";
mes "Once you're in the main terminal, you will need to pay the fee again";
mes "to board an Airship. You should";
mes "only exit if Lighthalzen is your intended destination. Shall we";
mes "proceed to the main terminal?";
next;
- if (select("Yes:No") == 1) {
+ if (select("Yes", "No") == 1) {
warp "lhz_airport",142,40;
end;
}