Commit ca115e271180877a9fc9eeaee32307e11b0bc2e0
1 parent
294e777b
Allow Waters of Life to bypass is_heal test because it can also cleanse effects …
…which could possibly reduce your heal mod to 0 (causing the is_heal test to fail).
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -35,7 +35,7 @@ newTalent{ |
35 | 35 | end |
36 | 36 | return false |
37 | 37 | end, |
38 | - is_heal = true, | |
38 | + is_heal = true, ignore_is_heal_test = true, | |
39 | 39 | getdur = function(self,t) return math.floor(self:combatTalentLimit(t, 30, 6, 14)) end, -- limit to <30 |
40 | 40 | action = function(self, t) |
41 | 41 | local nb = 0 | ... | ... |
-
Please register or login to post a comment