diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-08-10 02:37:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-08-10 02:37:59 -0300 |
commit | 5201262f6b6a137bc2bf66a4de2c50f1f9b28ac9 (patch) | |
tree | 67ce6626f8b2d8f6f1fbf8919b6ba4a941981354 /npc/011-3/flood.txt | |
parent | 1c44255336d372f4c00b34a8566c88c164a8cc43 (diff) | |
download | serverdata-5201262f6b6a137bc2bf66a4de2c50f1f9b28ac9.tar.gz serverdata-5201262f6b6a137bc2bf66a4de2c50f1f9b28ac9.tar.bz2 serverdata-5201262f6b6a137bc2bf66a4de2c50f1f9b28ac9.tar.xz serverdata-5201262f6b6a137bc2bf66a4de2c50f1f9b28ac9.zip |
Eternal Swamps: Be less verbose on Test Server
It eats precious log space
Diffstat (limited to 'npc/011-3/flood.txt')
-rw-r--r-- | npc/011-3/flood.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/011-3/flood.txt b/npc/011-3/flood.txt index 9b6971282..9bf9b2684 100644 --- a/npc/011-3/flood.txt +++ b/npc/011-3/flood.txt @@ -32,11 +32,11 @@ OnMinute46: OnMinute52: OnMinute56: OnSkipFlood: - if ($@GM_OVERRIDE || debug) debugmes "[Flood] Cycle begin"; + if ($@GM_OVERRIDE) debugmes "[Flood] Cycle begin"; .@fd=!(getmapmask("011-3")&MASK_SPECIAL); // .@fd - is flooded? if (.@fd) { - if ($@GM_OVERRIDE || debug) debugmes "[Flood] UF - Unflooding"; + if ($@GM_OVERRIDE) debugmes "[Flood] UF - Unflooding"; // If it is flooded, unflood it to prevent players getting struck for too long killmonster("011-3", "#EternalSwampCore::OnSwampMob"); addmapmask "011-3", MASK_SPECIAL; @@ -66,7 +66,7 @@ OnSkipFlood: // Maybe we should flood it if (rand(0,100) < .@odds) { - if ($@GM_OVERRIDE || debug) debugmes "[Flood] F - Flooding"; + if ($@GM_OVERRIDE) debugmes "[Flood] F - Flooding"; removemapmask "011-3", MASK_SPECIAL; //debugmes "[Flood] F - Adding Cells"; @@ -88,7 +88,7 @@ OnSkipFlood: } } - if ($@GM_OVERRIDE || debug) debugmes "[Flood] Cycle finished"; + if ($@GM_OVERRIDE) debugmes "[Flood] Cycle finished"; end; // Fix players struck by setcells |