| 1962 | |
| 1963 | |
| 1964 | void Net_SkipCommand (int cmd, uint8_t **stream) |
| 1965 | { |
| 1966 | if (cmd >= 0 && cmd < DEM_MAX && nethandlers[cmd]) |
| 1967 | { |
| 1968 | nethandlers[cmd](0, stream, true); |
| 1969 | } |
| 1970 | } |
| 1971 | |
| 1972 | // Reset the network ticker after finishing a lengthy operation. |
| 1973 | // Q: How does this affect network sync? Only allowed in SP games? |
no outgoing calls
no test coverage detected