diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/dungeon.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/dungeon.txt b/npc/functions/dungeon.txt index 60f0696c6..5d4f88ea7 100644 --- a/npc/functions/dungeon.txt +++ b/npc/functions/dungeon.txt @@ -29,7 +29,7 @@ OnHeat: } // You are in a HEATMAP$, so suffer damage from heat - if (@coolio > gettimetick(2)) + if (@coolio > gettimetick(2) || Class == Redy) percentheal -1, 0; else percentheal -5, 0; @@ -52,7 +52,7 @@ OnCurse: // First time seeing this if (@curse$ != getmap()) { @curse$=getmap(); - dispbottom l("This is a Cursed Lands map, you're lose mana over time and may also incurr in debuffs if mana is low (may cause death)."); + dispbottom l("This is a Cursed Lands map, you'll lose mana over time and may also incurr in debuffs if mana is low (may cause death)."); } // You are in a CURSEMAP$, so suffer damage from heat |