| 528 | // flag ent actions from the net |
| 529 | |
| 530 | void flagstolen(int flag, int act) |
| 531 | { |
| 532 | playerent *actor = getclient(act); |
| 533 | flaginfo &f = flaginfos[flag]; |
| 534 | f.actor = actor; // could be NULL if we just connected |
| 535 | f.actor_cn = act; |
| 536 | f.flagent->spawned = false; |
| 537 | f.ack = true; |
| 538 | } |
| 539 | |
| 540 | void flagdropped(int flag, float x, float y, float z) |
| 541 | { |
no test coverage detected