diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-03-18 23:34:54 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-03-18 23:34:54 -0300 |
commit | b9868f37632f8aa1b7a056dd4784ebf1a09a6890 (patch) | |
tree | 7347693583a04cc13a2739f6f98c5a7bc8ae16d5 | |
parent | cf727b9f35a9ad728ebda8fa76e2fa2cd3625d4d (diff) | |
download | serverdata-b9868f37632f8aa1b7a056dd4784ebf1a09a6890.tar.gz serverdata-b9868f37632f8aa1b7a056dd4784ebf1a09a6890.tar.bz2 serverdata-b9868f37632f8aa1b7a056dd4784ebf1a09a6890.tar.xz serverdata-b9868f37632f8aa1b7a056dd4784ebf1a09a6890.zip |
Fix hierarchy (CI false positive)
-rw-r--r-- | npc/functions/dungeon.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/dungeon.txt b/npc/functions/dungeon.txt index 0dbe759f7..b9d372d3a 100644 --- a/npc/functions/dungeon.txt +++ b/npc/functions/dungeon.txt @@ -294,7 +294,7 @@ OnLeech: // You are in a LEECHMAP$ so you lose HP and leech it to mobs if (@leechio <= gettimetick(2) && Class != Tritan) { percentheal -3, 0; - grenade(14, -500, false); // Won't recover HP for bosses + callfunc("grenade", 14, -500, false); // Won't recover HP for bosses } else if (rand2(3)) { // 67% chances of you still losing some HP percentheal -1, 0; |