--- a/hedgewars/uWorld.pas Wed Sep 01 17:42:56 2010 +0200
+++ b/hedgewars/uWorld.pas Wed Sep 01 18:06:52 2010 +0200
@@ -860,11 +860,8 @@
if ReadyTimeLeft > 0 then
begin
// TODO: move outside drawing code or do a spearate step in ugears?
- if (ReadyTimeLeft = 1) or (ReadyTimeLeft < Lag) then
- if (CurrentTeam^.ExtDriven or (CurrentHedgehog^.BotLevel > 0)) then
- PlaySound(sndIllGetYou, CurrentTeam^.voicepack)
- else
- PlaySound(sndYesSir, CurrentTeam^.voicepack);
+ if (ReadyTimeLeft = 2000) or ((ReadyTimeLeft - Lag < 2000) and (ReadyTimeLeft > 2000)) then
+ PlaySound(sndComeonthen, CurrentTeam^.voicepack);
if ReadyTimeLeft > Lag then
dec(ReadyTimeLeft, Lag)