From fa18c5ea54fe0361165b6710eeab5295b49624d9 Mon Sep 17 00:00:00 2001 From: Deathmax Date: Tue, 12 Jul 2011 18:43:17 +0800 Subject: [PATCH] Successful logins are now logged. --- TShockAPI/Commands.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index a7d8943a..17391842 100755 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -312,6 +312,7 @@ namespace TShockAPI args.Player.UserName = args.Parameters[0]; args.Player.IsLoggedIn = true; args.Player.SendMessage("Authenticated as " + args.Parameters[0] + " successfully.", Color.LimeGreen); + Log.ConsoleInfo(args.Player.Name + " authenticated successfully as " + args.Parameters[0] + "."); return; } else