diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-05-17 20:36:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-05-17 20:36:56 -0300 |
commit | 8a0b650fe80905a774d080239e95dd6d263d5269 (patch) | |
tree | 6583d675770626b748477c5d5f42dd2b5b78a3fe /npc/026-7 | |
parent | ba0785375773bab56498ee54dba91a66e6fa8361 (diff) | |
download | serverdata-8a0b650fe80905a774d080239e95dd6d263d5269.tar.gz serverdata-8a0b650fe80905a774d080239e95dd6d263d5269.tar.bz2 serverdata-8a0b650fe80905a774d080239e95dd6d263d5269.tar.xz serverdata-8a0b650fe80905a774d080239e95dd6d263d5269.zip |
Fix Death Touch to only trigger once per minute, not every 10 seconds
Diffstat (limited to 'npc/026-7')
-rw-r--r-- | npc/026-7/boss.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/026-7/boss.txt b/npc/026-7/boss.txt index cdac955ac..cfcca6566 100644 --- a/npc/026-7/boss.txt +++ b/npc/026-7/boss.txt @@ -286,7 +286,7 @@ OnTimer10000: if (.@hp <= 2 && .start_time < gettimetick(2) + 180) { unittalk(.MK, "Death touch!"); maptimer2("026-7", 10, "Impregnable#B7F::OnDeathTouch"); - .start_time = gettimetick(2) + 180; // This only happens once + .start_time = gettimetick(2) + 180 + 60; // This only happens once } } |