| 693 | return forceLookup[force]; |
| 694 | } |
| 695 | Force Server::getForce(int id) const |
| 696 | { |
| 697 | if (forceVector.size() <= static_cast<unsigned>(id)) |
| 698 | return nullptr; |
| 699 | return forceVector[id]; |
| 700 | } |
| 701 | int Server::getPlayerID(Player player) |
| 702 | { |
| 703 | if ( !player ) |
no test coverage detected