summaryrefslogtreecommitdiff
path: root/world/map/npc/001-1/bard.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/001-1/bard.txt')
-rw-r--r--world/map/npc/001-1/bard.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/world/map/npc/001-1/bard.txt b/world/map/npc/001-1/bard.txt
index c4a340ba..c7f9de54 100644
--- a/world/map/npc/001-1/bard.txt
+++ b/world/map/npc/001-1/bard.txt
@@ -19,7 +19,7 @@ L_Main:
"Have you heard any news?", L_News,
"What do you know about...", L_Question,
"Farewell!", -;
- close;
+ goto L_Close;
L_News:
// mes "[" + @name$ + "]";
@@ -125,5 +125,11 @@ L_Song:
mes "[" + @name$ + "]";
set @id, rand(3);
mes @songs$[@id];
+ goto L_Close;
+
+L_Close:
+ set @name$, "";
+ set @id, 0;
+ cleararray songs$[0], "", 3;
close;
}