| 53 | } |
| 54 | |
| 55 | void PlayerTech::disable(String const& techModule) { |
| 56 | unequip(techModule); |
| 57 | m_enabledTechs.remove(techModule); |
| 58 | } |
| 59 | |
| 60 | bool PlayerTech::isEquipped(String const& techModule) const { |
| 61 | for (auto t : m_equippedTechs.keys()) { |
no test coverage detected