| 419 | /** Set all invalid ClientID's to the proper value. */ |
| 420 | template <class Ttuple, size_t... Tindices> |
| 421 | static inline void SetClientIds(Ttuple &values, ClientID client_id, std::index_sequence<Tindices...>) |
| 422 | { |
| 423 | ((SetClientIdHelper(std::get<Tindices>(values), client_id)), ...); |
| 424 | } |
| 425 | |
| 426 | template <Commands Tcmd> |
| 427 | static void NetworkReplaceCommandClientId(CommandPacket &cp, ClientID client_id) |
no test coverage detected