Newmenus: Fix typo in error message

This commit is contained in:
Valentin Grünbacher 2014-05-27 10:38:25 +02:00
parent a6ffae72f5
commit dc3e68c507

View File

@ -1066,7 +1066,7 @@ static cell AMX_NATIVE_CALL menu_cancel(AMX *amx, cell *params)
CPlayer *player = GET_PLAYER_POINTER_I(index); CPlayer *player = GET_PLAYER_POINTER_I(index);
if (!player->ingame) 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; return 0;
} }