| 919 | |
| 920 | |
| 921 | void ServerLink::sendAlive(const PlayerId playerId) { |
| 922 | char msg[1]; |
| 923 | |
| 924 | void* buf = msg; |
| 925 | buf = nboPackUInt8(buf, uint8_t(playerId)); |
| 926 | |
| 927 | send(MsgAlive, sizeof(msg), msg); |
| 928 | } |
| 929 | |
| 930 | |
| 931 | void ServerLink::sendTeleport(int from, int to) { |
no test coverage detected