Making rename's LogAction message consistent... (#696)

with the other plugin's messages.
This commit is contained in:
Andrew 2017-09-26 20:22:38 -04:00 committed by Nicholas Hastings
parent f289799c57
commit f67e4ce610

View File

@ -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]);