summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/005-1/underground.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/005-1/underground.txt b/npc/005-1/underground.txt
index 1281ca04d..bd5b2145b 100644
--- a/npc/005-1/underground.txt
+++ b/npc/005-1/underground.txt
@@ -22,7 +22,7 @@ OnInit:
end;
OnTouch:
- if (TUTORIAL) {
+ if (TUTORIAL && !@candor_warn) {
mesc ".:: "+l("WARNING")+" ::.", 1;
mesc l("You're about to enter a dangerous zone!");
mesc l("Outside towns, there's an EXP penalty if you die.");
@@ -33,6 +33,7 @@ OnTouch:
mesc l("EXP Penalty: ON"), 1;
if (askyesno() == ASK_NO) close;
closeclientdialog;
+ @candor_warn = true; // Maybe record this in a more definitive way
}
warp "006-0", 49, 53;
end;