Merged in penetal/hlstatsx-community-edition-1/penetal/csgo-is-not-able-to-display-motd-at-any--1467745736438 (pull request #13)

CSGO is not able to display MOTD at any other time than server connect, before picking teams.
This commit is contained in:
Christopher Lynch 2016-07-05 16:45:16 -04:00
commit 7111b6309b
1 changed files with 6 additions and 2 deletions

View File

@ -188,7 +188,7 @@ public OnPluginStart()
switch (gamemod)
{
case Game_L4D, Game_INSMOD, Game_GES:
case Game_L4D, Game_INSMOD, Game_GES, Game_CSGO:
{
g_bGameCanDoMotd = false;
}
@ -360,10 +360,14 @@ get_server_mod()
new String: game_description[64];
GetGameDescription(game_description, sizeof(game_description), true);
if (StrContains(game_description, "Counter-Strike", false) != -1)
if (StrContains(game_description, "Counter-Strike: Source", false) != -1)
{
gamemod = Game_CSS;
}
if (StrContains(game_description, "Counter-Strike: Global Offensive", false) != -1)
{
gamemod = Game_CSGO;
}
else if (StrContains(game_description, "Day of Defeat", false) != -1)
{
gamemod = Game_DODS;