GetForceOfPlayer

Parameters
whichPlayer player
comment

Creates a new force to include the target player.

bug

Leaks handle f: In Jass you must set local variables that hold agents (or any child type) to null at the end of functions to avoid reference counter leaks.

note

Creates a new force object and returns it. The caller must remove it on its own after use.

patch

1.00

Source
Blizzard.j
return type
force
Source code
function GetForceOfPlayer takes player whichPlayer returns force
    local force f = CreateForce()
    call ForceAddPlayer(f, whichPlayer)
    return f
endfunction