# HG changeset patch # User unc0rr # Date 1361518554 -14400 # Node ID 1385ab7219d980851453a7b35f8347d88fddb3e8 # Parent b7f07363ee92a9d51a2d8132b5a952629689cec8 Oh, and # too to prevent occasional game hang when N is followed by # diff -r b7f07363ee92 -r 1385ab7219d9 hedgewars/uIO.pas --- a/hedgewars/uIO.pas Fri Feb 22 11:33:30 2013 +0400 +++ b/hedgewars/uIO.pas Fri Feb 22 11:35:54 2013 +0400 @@ -251,7 +251,7 @@ Move(s, sendBuffer.buf[sendBuffer.count], byte(s[0]) + 1); inc(sendBuffer.count, byte(s[0]) + 1); - if s[1] = 'N' then + if (s[1] = 'N') or (s[1] = '#') then flushBuffer(); end else SDLNet_TCP_Send(IPCSock, @s, Succ(byte(s[0])))