diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-10-11 19:02:11 -0400 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-10-11 19:02:20 -0400 |
commit | 6662b6f305976881c3e675241c41be7731b65aa5 (patch) | |
tree | a8ecaa074cf67cb929f4de6ed62ef7c4b49c46d1 /npc/000-2-3/elmo.txt | |
parent | 03049799efdc103fdd74e77161ed6a907acb7dde (diff) | |
download | serverdata-s20171023.tar.gz serverdata-s20171023.tar.bz2 serverdata-s20171023.tar.xz serverdata-s20171023.zip |
what's up with this crazy syntax?s20171023
I blame Reid
Diffstat (limited to 'npc/000-2-3/elmo.txt')
-rw-r--r-- | npc/000-2-3/elmo.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/000-2-3/elmo.txt b/npc/000-2-3/elmo.txt index 8e2ef044..c623e321 100644 --- a/npc/000-2-3/elmo.txt +++ b/npc/000-2-3/elmo.txt @@ -30,13 +30,13 @@ l("Hey you, sorry for leaving your room so quickly. I needed to speak with the captain about the food reserves. You know, now that we have a new mouth to feed, we need to check what we have."), l("So, how is it going? Did you meet any other crew members yet?"); - switch (select (l("Yes, Arpan gave me these clothes."), l("Not yet."))) + switch (select(l("Yes, Arpan gave me these clothes."), l("Not yet."))) { case 1: speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("Oh good! Did he give you your money back as well?"); - switch (select (l("Yes he did."), l("He told me nothing about that."))) + switch (select(l("Yes he did."), l("He told me nothing about that."))) { case 1: speech S_FIRST_BLANK_LINE | S_LAST_NEXT, @@ -45,7 +45,7 @@ case 2: speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("Hehe, sometimes he gets his head in the clouds, You should go ask him about that."); - setq ShipQuests_ArpanMoney, 1; + setq ShipQuests_ArpanMoney, 1; break; } |