MCLawl.PlayerBot.GlobalSpawn C# (CSharp) Method

GlobalSpawn() public method

public GlobalSpawn ( ) : void
return void
        public void GlobalSpawn()
        {
            Player.players.ForEach(delegate(Player p)   //bots dont need to be informed of other bots here
            {
                if (p.level != level) { return; }
                p.SendSpawn(id, color + name, pos[0], pos[1], pos[2], rot[0], rot[1]);
            });
        }