ServerTools.API.PlayerSpawning C# (CSharp) Method

PlayerSpawning() public method

public PlayerSpawning ( ClientInfo _cInfo, int _chunkViewDim, PlayerProfile _playerProfile ) : void
_cInfo ClientInfo
_chunkViewDim int
_playerProfile PlayerProfile
return void
        public override void PlayerSpawning(ClientInfo _cInfo, int _chunkViewDim, PlayerProfile _playerProfile)
        {
            if (Motd.IsEnabled)
            {
                Motd.Send(_cInfo);
            }
            if (ClanManager.IsEnabled)
            {
                ClanManager.CheckforClantag(_cInfo);
            }
        }