Skip to content

Commit 28c659e

Browse files
committed
fix
1 parent 5c425a6 commit 28c659e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Details/core/parser.lua

+4-3
Original file line numberDiff line numberDiff line change
@@ -1566,13 +1566,14 @@ function parser:heal(token, time, who_serial, who_name, who_flags, alvo_serial,
15661566
------------------------------------------------------------------------------------------------
15671567
--> early checks and fixes
15681568

1569-
if (not _in_combat and _detalhes.SirusCustom.EnterInCombatWhenHeal) or (_detalhes.last_combat_time + 30 < _tempo) then
1569+
if (not _in_combat and _detalhes.SirusCustom.EnterInCombatWhenHeal) then
15701570
-- if(not _in_resting_zone) then
15711571
-- return
15721572
-- end
1573-
-- if _detalhes.last_combat_time + 30 < _tempo then
1573+
if _detalhes.last_combat_time + 30 < _tempo then
1574+
_detalhes:StartCombat(who_serial, who_name, who_flags, alvo_serial, alvo_name, alvo_flags) -- test func
15741575
return
1575-
-- end
1576+
end
15761577
end
15771578

15781579
--> check invalid serial against pets

0 commit comments

Comments
 (0)