summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--world/map/npc/annuals/fathertime.txt1
-rw-r--r--world/map/npc/annuals/xmas/config.txt3
-rw-r--r--world/map/npc/functions/ferry.txt1
3 files changed, 5 insertions, 0 deletions
diff --git a/world/map/npc/annuals/fathertime.txt b/world/map/npc/annuals/fathertime.txt
index 0cbc5cf6..d463f3b7 100644
--- a/world/map/npc/annuals/fathertime.txt
+++ b/world/map/npc/annuals/fathertime.txt
@@ -5,6 +5,7 @@
end;
OnInit:
+ if (debug >= 2) end;
goto L_StartTimer;
L_StartTimer:
diff --git a/world/map/npc/annuals/xmas/config.txt b/world/map/npc/annuals/xmas/config.txt
index 5a982c5c..70eb5b05 100644
--- a/world/map/npc/annuals/xmas/config.txt
+++ b/world/map/npc/annuals/xmas/config.txt
@@ -289,6 +289,9 @@ L_RewardTime:
goto L_Return;
L_Return:
+ // technically this only needs to skip the npctimer in SpawnMobs,
+ // but this is a low-level debug setting so whatever.
+ if (debug >= 2) end;
callfunc "SpawnMobs";
callfunc "PresentHandler";
callfunc "ReplaceTrees";
diff --git a/world/map/npc/functions/ferry.txt b/world/map/npc/functions/ferry.txt
index ec84f3cb..8cc6de47 100644
--- a/world/map/npc/functions/ferry.txt
+++ b/world/map/npc/functions/ferry.txt
@@ -18,6 +18,7 @@ OnInit:
setarray $@CandorDocks$, "Candor", "Tulimshar North";
cmdothernpc "#"+$@MainDocks$[$@MainCurrentDock]+"Dock", "Arrive";
cmdothernpc "#"+$@CandorDocks$[$@CandorCurrentDock]+"Dock", "Arrive";
+ if (debug >= 2) end;
initnpctimer;
end;