Imported fix from dev: 752:9c4222fa9219 - Removed hint text sound from spawn protection timer.

This commit is contained in:
Richard Helgeby 2010-07-06 23:20:09 +02:00
parent e1bf20cb52
commit ebf677c527

View File

@ -173,6 +173,7 @@ SpawnProtectStart(client)
// Send time left in a hud message. // Send time left in a hud message.
TranslationPrintHintText(client, "Spawn Protect", pSpawnProtectTime[client]); TranslationPrintHintText(client, "Spawn Protect", pSpawnProtectTime[client]);
StopSound(client, SNDCHAN_STATIC, "UI/hint.wav");
// Start repeating timer. // Start repeating timer.
tSpawnProtect[client] = CreateTimer(1.0, SpawnProtectTimer, client, TIMER_FLAG_NO_MAPCHANGE|TIMER_REPEAT); tSpawnProtect[client] = CreateTimer(1.0, SpawnProtectTimer, client, TIMER_FLAG_NO_MAPCHANGE|TIMER_REPEAT);