From dc3e68c507b1e443d11cf8c941f58bea53e29df1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Gr=C3=BCnbacher?= Date: Tue, 27 May 2014 10:38:25 +0200 Subject: [PATCH] Newmenus: Fix typo in error message --- amxmodx/newmenus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amxmodx/newmenus.cpp b/amxmodx/newmenus.cpp index 691c3e6f..028ebc76 100755 --- a/amxmodx/newmenus.cpp +++ b/amxmodx/newmenus.cpp @@ -1066,7 +1066,7 @@ static cell AMX_NATIVE_CALL menu_cancel(AMX *amx, cell *params) CPlayer *player = GET_PLAYER_POINTER_I(index); if (!player->ingame) { - LogError(amx, AMX_ERR_NATIVE, "Played %d is not in game", index); + LogError(amx, AMX_ERR_NATIVE, "Player %d is not in game", index); return 0; }