summaryrefslogtreecommitdiff
path: root/npc/functions/aurora.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/aurora.txt')
-rw-r--r--npc/functions/aurora.txt9
1 files changed, 7 insertions, 2 deletions
diff --git a/npc/functions/aurora.txt b/npc/functions/aurora.txt
index 275bbc8dd..1e100f3cd 100644
--- a/npc/functions/aurora.txt
+++ b/npc/functions/aurora.txt
@@ -147,7 +147,11 @@ function script FYE_Kamelot {
}
mesc l("Should we?");
next;
- if (askyesno() == ASK_NO)
+ askyesno();
+ closeclientdialog();
+
+ // Not going? Spoilsport
+ if (@menu == ASK_NO)
return false;
// Someone began while you waited
@@ -155,11 +159,12 @@ function script FYE_Kamelot {
return true;
// Begin
- callfunc("KamelotCleanup", .@g);
+ //callfunc("KamelotCleanup", .@g); // Not needed
$KAMELOT_COOLDOWN[.@g] = 0;
$@FYE_KAMELOT[.@g] = gettimeparam(GETTIME_DAYOFMONTH);
mesc l("Have fun!");
next;
+ closeclientdialog();
return true;
}
return false;