16 lines
190 B
Ucode
16 lines
190 B
Ucode
class NPCFriendly_AI extends NPC_AI;
|
|
|
|
function bool SameTeamAs(Controller C)
|
|
{
|
|
if(MonsterController(C) != none)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
}
|