From f67e4ce610714ced1b3da0675e7a7d855c345e74 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 26 Sep 2017 20:22:38 -0400 Subject: [PATCH] Making rename's LogAction message consistent... (#696) with the other plugin's messages. --- plugins/playercommands/rename.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/playercommands/rename.sp b/plugins/playercommands/rename.sp index 17ceeba4..6a0853e5 100644 --- a/plugins/playercommands/rename.sp +++ b/plugins/playercommands/rename.sp @@ -35,7 +35,7 @@ char g_NewName[MAXPLAYERS+1][MAX_NAME_LENGTH]; void PerformRename(int client, int target) { - LogAction(client, target, "\"%L\" renamed \"%L\" to \"%s\")", client, target, g_NewName[target]); + LogAction(client, target, "\"%L\" renamed \"%L\" (to \"%s\")", client, target, g_NewName[target]); SetClientName(target, g_NewName[target]);