| 1457 | |
| 1458 | |
| 1459 | bool cConnection::HandleServerDestroyEntities(void) |
| 1460 | { |
| 1461 | HANDLE_SERVER_PACKET_READ(ReadByte, Byte, NumEntities); |
| 1462 | if (!m_ServerBuffer.SkipRead((int)NumEntities * 4)) |
| 1463 | { |
| 1464 | return false; |
| 1465 | } |
| 1466 | Log("Received PACKET_DESTROY_ENTITIES from the server:"); |
| 1467 | Log(" NumEntities = %d", NumEntities); |
| 1468 | COPY_TO_CLIENT(); |
| 1469 | return true; |
| 1470 | } |
| 1471 | |
| 1472 | |
| 1473 |