| 818 | |
| 819 | |
| 820 | void ServerLink::sendDropFlag(const fvec3& position) { |
| 821 | char msg[13]; |
| 822 | void* buf = msg; |
| 823 | buf = nboPackUInt8(buf, uint8_t(getId())); |
| 824 | buf = nboPackFVec3(buf, position); |
| 825 | send(MsgDropFlag, sizeof(msg), msg); |
| 826 | } |
| 827 | |
| 828 | |
| 829 | void ServerLink::sendKilled(const PlayerId victim, |
no test coverage detected