[JASS] return not working

Status
Not open for further replies.
Well, all you can do is to check the unit and the return from GetUnitCurrentOrder. Either that function doesn't work like you think it does, or the unit is null...

JASS:
function IsDestructableTree takes destructable d returns boolean
    call BJDebugMsg("Unit: "+GetUnitName(udg_ISD_dummy))
    call BJDebugMsg("Order: "+I2S(GetUnitCurrentOrder(udg_ISD_dummy)))
    return GetUnitCurrentOrder(udg_ISD_dummy) == 852018
endfunction

But... if you want to check if a destructable is a tree, I think you can just use (with a unit that has eat-tree, on a copy of the targeted object).

JASS:
if IssueTargetOrder(dummy, "eattreeorwhatev", destructible) then
   // Is tree
endif
 
Status
Not open for further replies.
Back
Top