# HG changeset patch # User unc0rr # Date 1231439520 0 # Node ID fe6dd0bd18867cfb597fbc1183e6ee32c58f5cb0 # Parent d52f62c9fc09c73207e306e4a97e7565ce83497a Oops, fix last patch diff -r d52f62c9fc09 -r fe6dd0bd1886 hedgewars/uGame.pas --- a/hedgewars/uGame.pas Thu Jan 08 18:01:30 2009 +0000 +++ b/hedgewars/uGame.pas Thu Jan 08 18:32:00 2009 +0000 @@ -35,13 +35,12 @@ var i: LongInt; begin if isPaused then exit; -if (not CurrentTeam^.ExtDriven) - and not ((GameType = gmtSave) or (fastUntilLag and (GameType = gmtNet))) then +if (not CurrentTeam^.ExtDriven) then begin NetGetNextCmd; // its for the case of receiving "/say" message isInLag:= false; inc(SendEmptyPacketTicks, Lag); - if SendEmptyPacketTicks >= cSendEmptyPacketTime then + if (SendEmptyPacketTicks >= cSendEmptyPacketTime) and not ((GameType = gmtSave) or (fastUntilLag and (GameType = gmtNet))) then begin SendIPC('+'); SendEmptyPacketTicks:= 0