Issue

Status
Not open for further replies.
Perhaps you didn't specify the anonymous function.

JASS:
//! zinc
if (GetUnitTypeId(GetEnumUnit()) == 'hHse' )  {
    // Added for keeping object leaks leak-free.
    bj_wantDestroyGroup = true;
    ForGroupBJ(GetUnitsInRangeOfLocAll(250.00, GetUnitLoc(GetTriggerUnit())), function() {
        ExplodeUnit( GetEnumUnit() );
    });
}
//! endzinc
 
Status
Not open for further replies.
Back
Top