ShowUnitShow

Parameters
whichUnit unit
comment
patch

1.00

Source
Blizzard.j
return type
nothing
Source code
function ShowUnitShow takes unit whichUnit returns nothing
    // Prevent dead heroes from being unhidden.
    if (IsUnitType(whichUnit, UNIT_TYPE_HERO) and IsUnitDeadBJ(whichUnit)) then
        return
    endif

    call ShowUnit(whichUnit, true)
endfunction