diff --git a/plugins/nominations.sp b/plugins/nominations.sp index db5244c9..40dbef78 100644 --- a/plugins/nominations.sp +++ b/plugins/nominations.sp @@ -351,7 +351,11 @@ void AttemptNominate(int client, const char[] map, int size) char name[MAX_NAME_LENGTH]; GetClientName(client, name, sizeof(name)); - PrintToChatAll("[SM] %t", "Map Nominated", name, displayName); + if (result == Nominate_Added) { + PrintToChatAll("[SM] %t", "Map Nominated", name, displayName); + } else { + ReplyToCommand(client, "[SM] %t", "Map Nominated", name, displayName); + } return; }