IsUnitGroupDeadBJ
- Parameters
g group- comment
- patch
1.00
- Source
- Blizzard.j (suggest an edit or discuss on Github)
- return type
boolean- Source code
function IsUnitGroupDeadBJ takes group g returns boolean // If the user wants the group destroyed, remember that fact and clear // the flag, in case it is used again in the callback. local boolean wantDestroy = bj_wantDestroyGroup set bj_wantDestroyGroup = false set bj_isUnitGroupDeadResult = true call ForGroup(g, function IsUnitGroupDeadBJEnum) // If the user wants the group destroyed, do so now. if (wantDestroy) then call DestroyGroup(g) endif return bj_isUnitGroupDeadResult endfunction