Removed the chat trigger detection, it causes a shit ton of errors in console. And updated compilers.

This commit is contained in:
Andrew
2011-06-17 20:09:56 -07:00
parent 11ef05f995
commit 5c3a6b16cc
9 changed files with 4 additions and 109 deletions

View File

@ -43,18 +43,8 @@ RoundStartOnClientSpawn(client)
return;
}
// Get public chat trigger prefix.
decl String:publictrigger[4];
SayHooksGetPublicChatTrigger(publictrigger, sizeof(publictrigger));
// If public chat trigger is disabled, then don't print message.
if (StrEqual(publictrigger, "N/A", false))
{
return;
}
// Print to client, how to access ZMenu.
TranslationPrintToChat(client, "General zmenu reminder", publictrigger, SAYHOOKS_KEYWORD_ZMENU);
TranslationPrintToChat(client, "General zmenu reminder", SAYHOOKS_CHAT_PUBLIC_DEFAULT, SAYHOOKS_KEYWORD_ZMENU);
}
/**