- Joined
- Nov 25, 2008
- Messages
- 1,309
I know that
It still renders the unit unselectable, untargetable, invulnerable, and ignore pathing/collision. However, it seems to still make it not work with
GroupEnumUnitsInRange doesn't work with units that have 'aloc'. I remove 'aloc' with the following code:
JASS:
function RemoveLocus takes unit U returns nothing
call ShowUnit(U,false)
call UnitRemoveAbility(U,'aloc')
call UnitAddAbility(U,'avul')
call ShowUnit(U,true)
endfunction
GroupEnumUnitsInRange. Is there a workaround for this that doesn't change the speed of the loop?










