fCraft.StandardCommands.Me C# (CSharp) Method

Me() public method

public Me ( Player player, Command cmd ) : void
player Player
cmd Command
return void
        public void Me( Player player, Command cmd ) {
            string msg = cmd.NextAll().Trim();
            if( msg != null ) {
                world.SendToAll( "*" + Color.Purple + player.name + " " + msg, null );
            }
        }