コード例 #1
0
ファイル: Player.Login.cs プロジェクト: ProtheanGod/KingMC
        void ShowWelcome()
        {
            LastAction = DateTime.UtcNow;
            TextFile welcomeFile = TextFile.Files["Welcome"];

            try {
                welcomeFile.EnsureExists();
                string[] welcome = welcomeFile.GetText();
                Player.MessageLines(this, welcome);
            } catch (Exception ex) {
                Logger.LogError(ex);
            }
        }