From 2ce73863f1fb3795f85ba5cb1a701e2ea4df419c Mon Sep 17 00:00:00 2001 From: SMUnlimited Date: Fri, 20 Dec 2024 10:33:27 +0000 Subject: [PATCH] Removed ward check setter that doesn't work --- Jobs/SEND_HOME.eai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jobs/SEND_HOME.eai b/Jobs/SEND_HOME.eai index f28c91a54..814cf6066 100644 --- a/Jobs/SEND_HOME.eai +++ b/Jobs/SEND_HOME.eai @@ -197,7 +197,7 @@ function SendUnitHomeJob takes unit u, integer p returns nothing // Below attempt to heal myself elseif (GetUnitAbilityLevel(u, 'Ahwd') > 0 or GetUnitAbilityLevel(u, 'AChw') > 0) and not ward_cast then call RemoveGuardPosition(u) - set ward_cast = IssuePointOrder(u, "healingward", GetUnitX(u), GetUnitY(u)) + call IssuePointOrder(u, "healingward", GetUnitX(u), GetUnitY(u)) call CreateDebugTag("SEND_HOME use healingward " + B2S(ward_cast), 10, u, 3.00, 1.50) elseif GetUnitAbilityLevel(u, 'AChv') > 0 or (IsUnitType(u, UNIT_TYPE_HERO) and (GetUnitAbilityLevel(u, 'AOhw') > 0 or GetUnitAbilityLevel(u, 'ANhw') > 0)) then call RemoveGuardPosition(u)