summaryrefslogtreecommitdiff
path: root/npc/functions/openbook.txt
diff options
context:
space:
mode:
authorgumi <mekolat@users.noreply.github.com>2017-10-11 19:02:11 -0400
committergumi <mekolat@users.noreply.github.com>2017-10-11 19:02:20 -0400
commit6662b6f305976881c3e675241c41be7731b65aa5 (patch)
treea8ecaa074cf67cb929f4de6ed62ef7c4b49c46d1 /npc/functions/openbook.txt
parent03049799efdc103fdd74e77161ed6a907acb7dde (diff)
downloadserverdata-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/functions/openbook.txt')
-rw-r--r--npc/functions/openbook.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/openbook.txt b/npc/functions/openbook.txt
index a46d957c..0278415c 100644
--- a/npc/functions/openbook.txt
+++ b/npc/functions/openbook.txt
@@ -13,7 +13,7 @@ function script openbook {
l("You open a book named @@.", .@book_name$),
l("Do you want to read it?");
- return (select ("Yes.", "No.") == 1);
+ return (select("Yes.", "No.") == 1);
}
function script openbookshelf {
@@ -24,7 +24,7 @@ function script openbookshelf {
l("The name of the book is @@.", .@book_name$),
l("Do you want to read it?");
- return (select ("Yes.", "No.") == 1);
+ return (select("Yes.", "No.") == 1);
}
function script openoldbook {
@@ -32,5 +32,5 @@ function script openoldbook {
l("You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing."),
l("The old book seems to tell about the legend of Aemil. Would you like to read it?");
- return (select ("Yes.", "No.") == 1);
+ return (select("Yes.", "No.") == 1);
}