MapChooser: Cleanup some dumb things.

This commit is contained in:
zaCade
2018-07-27 21:27:42 +02:00
parent a74d4a42c9
commit 2e0556a0d1
2 changed files with 10 additions and 10 deletions
@@ -72,9 +72,9 @@ Handle g_mapTrie;
// Nominations Extended Convars
Handle g_Cvar_MarkCustomMaps = INVALID_HANDLE;
Handle g_Cvar_NominateDelay = INVALID_HANDLE;
Handle g_Cvar_InitialDelay = INVALID_HANDLE;
int g_Player_NominationDelay[MAXPLAYERS+1];
int g_NominationDelay;
@@ -534,7 +534,7 @@ public Action Command_Nominate(int client, int args)
if(result == Nominate_AlreadyInVote)
CPrintToChat(client, "[NE] %t", "Map Already In Vote", mapname);
else if(result == Nominate_VoteFull)
CPrintToChat(client, "[ME] %t", "Max Nominations");
CPrintToChat(client, "[NE] %t", "Max Nominations");
return Plugin_Handled;
}
@@ -856,7 +856,7 @@ stock bool IsNominateAllowed(int client)
{
case CanNominate_No_VoteInProgress:
{
CReplyToCommand(client, "[ME] %t", "Nextmap Voting Started");
CReplyToCommand(client, "[NE] %t", "Nextmap Voting Started");
return false;
}
@@ -870,7 +870,7 @@ stock bool IsNominateAllowed(int client)
/*
case CanNominate_No_VoteFull:
{
CReplyToCommand(client, "[ME] %t", "Max Nominations");
CReplyToCommand(client, "[NE] %t", "Max Nominations");
return false;
}
*/