| 2747 | } |
| 2748 | |
| 2749 | void GameMap::consoleToggleSeatVisualDebug(int seatId) |
| 2750 | { |
| 2751 | Seat* seat = getSeatById(seatId); |
| 2752 | if(seat == nullptr) |
| 2753 | return; |
| 2754 | |
| 2755 | seat->toggleSeatVisualDebug(); |
| 2756 | seat->refreshSeatVisualDebug(); |
| 2757 | } |
| 2758 | |
| 2759 | void GameMap::consoleSetLevelCreature(const std::string& creatureName, uint32_t level) |
| 2760 | { |
no test coverage detected