From 221d34f809ac3eccd5cf9839950a400af785c6f4 Mon Sep 17 00:00:00 2001 From: Rushaway Date: Sun, 15 Jan 2023 19:32:41 +0100 Subject: [PATCH] fix: Print full map name in Log instead of args (#1907) --- plugins/basecommands/map.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/basecommands/map.sp b/plugins/basecommands/map.sp index cb4d29b6..d4f346d2 100644 --- a/plugins/basecommands/map.sp +++ b/plugins/basecommands/map.sp @@ -112,7 +112,7 @@ public Action Command_Map(int client, int args) GetMapDisplayName(displayName, displayName, sizeof(displayName)); ShowActivity2(client, "[SM] ", "%t", "Changing map", displayName); - LogAction(client, -1, "\"%L\" changed map to \"%s\"", client, map); + LogAction(client, -1, "\"%L\" changed map to \"%s\" (input \"%s\")", client, displayName, map); DataPack dp; CreateDataTimer(3.0, Timer_ChangeMap, dp);