From 6def12b5172a6801025cd963b3aa55eb403f424f Mon Sep 17 00:00:00 2001 From: Deathmax Date: Tue, 12 Jul 2011 18:44:49 +0800 Subject: [PATCH] Changed the format for logging logins. --- TShockAPI/Commands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index 17391842..03866f40 100755 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -312,12 +312,12 @@ 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] + "."); + Log.ConsoleInfo(args.Player.Name + " authenticated successfully as user: " + args.Parameters[0]); return; } else { - Log.Warn(args.Player.IP + " failed to authenticate as " + args.Parameters[0]); + Log.Warn(args.Player.IP + " failed to authenticate as user: " + args.Parameters[0]); args.Player.LoginAttempts++; return; }