rott/kf_sources/KFStoryGame/Classes/KFStoryRoster.uc
2026-07-14 20:27:09 +07:00

12 lines
197 B
Ucode

class KFStoryRoster extends xTeamRoster;
function bool AddToTeam( Controller Other )
{
if(Other.PlayerReplicationinfo == none)
{
return false;
}
return Super.AddToTeam(Other);
}