diff --git a/engine/common/net_chan.c b/engine/common/net_chan.c index fe2d1dd8..f6f0d275 100644 --- a/engine/common/net_chan.c +++ b/engine/common/net_chan.c @@ -1521,6 +1521,9 @@ void Netchan_TransmitBits( netchan_t *chan, int length, byte *data ) return; } + if( chan->pfnBlockSize == NULL ) // not initialized + return; + // if the remote side dropped the last reliable message, resend it send_reliable = false;