summaryrefslogtreecommitdiff
path: root/npc/functions/fishing.txt
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2017-08-19 20:52:22 +0200
committerReid <reidyaro@gmail.com>2017-08-19 20:52:22 +0200
commit0ea634980d06edb580d9872b71139e60012f5b91 (patch)
tree44d1105db985fef63984e64a3f670d15ac6485ac /npc/functions/fishing.txt
parent4a3d156faea0b1b4eaa16bb5039327a9862f3449 (diff)
downloadserverdata-0ea634980d06edb580d9872b71139e60012f5b91.tar.gz
serverdata-0ea634980d06edb580d9872b71139e60012f5b91.tar.bz2
serverdata-0ea634980d06edb580d9872b71139e60012f5b91.tar.xz
serverdata-0ea634980d06edb580d9872b71139e60012f5b91.zip
Replace bit flags by constants on narrator and speech functions.
Diffstat (limited to 'npc/functions/fishing.txt')
-rw-r--r--npc/functions/fishing.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/functions/fishing.txt b/npc/functions/fishing.txt
index 88fef427..8eadab89 100644
--- a/npc/functions/fishing.txt
+++ b/npc/functions/fishing.txt
@@ -222,7 +222,7 @@ function script fishing {
// begin fishing
- narrator 4,
+ narrator S_LAST_NEXT,
l("You see some fish reflecting the sun on the surface of the water."),
l("What will be the bait for the fish?");
@@ -233,7 +233,7 @@ function script fishing {
if (.@bait < 1)
{
- narrator 1,
+ narrator S_FIRST_BLANK_LINE,
l("You take your fishing rod and leave.");
return -6;
@@ -255,7 +255,7 @@ function script fishing {
if (.@bait_c != true)
{
- narrator 1,
+ narrator S_FIRST_BLANK_LINE,
l("This item cannot be used as bait here.");
return -6;
@@ -263,7 +263,7 @@ function script fishing {
if (getvariableofnpc(.char_id, .@npc$) > 0)
{
- narrator 1,
+ narrator S_FIRST_BLANK_LINE,
l("Somebody took your place on this spot!"),
l("You take your fishing rod and leave.");
return -8;