| 2450 | _client->AskForReceiveUnitAnswer(from, to, answer); |
| 2451 | } |
| 2452 | } |
| 2453 | |
| 2454 | void NetworkManager::AskForGroupRespawn(Person* person, EntityAI* killer) |
| 2455 | { |
| 2456 | if (_client) |
| 2457 | { |
| 2458 | _client->AskForGroupRespawn(person, killer); |
| 2459 | } |
| 2460 | } |
| 2461 | |
| 2462 | void NetworkManager::AskForActivateMine(Mine* mine, bool activate) |
| 2463 | { |
| 2464 | if (_client) |
| 2465 | { |
| 2466 | _client->AskForActivateMine(mine, activate); |
| 2467 | } |
| 2468 | } |
| 2469 | |
| 2470 | void NetworkManager::AskForInflameFire(Fireplace* fireplace, bool fire) |