mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-18 18:01:13 +00:00
read excess nails correctly for nail2
This commit is contained in:
parent
d70caac6d5
commit
d5117e27ee
1 changed files with 2 additions and 5 deletions
|
@ -600,12 +600,9 @@ CL_ParseProjectiles (qboolean nail2)
|
|||
}
|
||||
|
||||
if (d < c) {
|
||||
c = (c - d) * 6;
|
||||
for (i = 0; i < c; i++) {
|
||||
if (nail2)
|
||||
MSG_ReadByte (net_message);
|
||||
c = (c - d) * (nail2 ? 7 : 6);
|
||||
for (i = 0; i < c; i++)
|
||||
MSG_ReadByte (net_message);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue