| 1707 | } |
| 1708 | |
| 1709 | RString PlayerIdentity::GetName() const |
| 1710 | { |
| 1711 | if (squad) |
| 1712 | { |
| 1713 | return name + RString(" [") + squad->nick + RString("]"); |
| 1714 | } |
| 1715 | else |
| 1716 | { |
| 1717 | return name; |
| 1718 | } |
| 1719 | } |
| 1720 | |
| 1721 | // network message indices for SquadIdentity class |
| 1722 | class IndicesSquad : public NetworkMessageIndices |
no test coverage detected