summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions')
-rw-r--r--npc/functions/dungeon.txt2
-rw-r--r--npc/functions/main.txt2
2 files changed, 3 insertions, 1 deletions
diff --git a/npc/functions/dungeon.txt b/npc/functions/dungeon.txt
index ca6799fe6..9d780c019 100644
--- a/npc/functions/dungeon.txt
+++ b/npc/functions/dungeon.txt
@@ -141,7 +141,7 @@ OnBleed:
if (rand2(50) == 25)
SC_Bonus(15, SC_BLOODING, 1);
- // New tick
+ // New tick (15 seconds fixed cycle)
addtimer2 15000, .name$+"::OnBleed";
end;
diff --git a/npc/functions/main.txt b/npc/functions/main.txt
index 58ec36e00..2c7f62c8d 100644
--- a/npc/functions/main.txt
+++ b/npc/functions/main.txt
@@ -152,6 +152,8 @@ function script narrator {
for (.@i = .@start; .@i < .@argc; .@i++)
{
+ if (getarg(.@i) == "") continue;
+
mes col(getarg(.@i), 9);
if (.@i < .@argc - 1)
dnext;