net: Add client message when a tic is first sent.

This commit is contained in:
Simon Howard 2019-01-29 23:19:59 -05:00
parent b9cf256e89
commit 945355d29f

View file

@ -414,7 +414,9 @@ void NET_CL_SendTiccmd(ticcmd_t *ticcmd, int maketic)
if (starttic < 0)
starttic = 0;
NET_Log("client: generated tic %d, sending %d-%d",
maketic, starttic, endtic);
NET_CL_SendTics(starttic, endtic);
}