| 305 | } |
| 306 | |
| 307 | Command::Result cSrvSeatVisDebug(const Command::ArgumentList_t& args, ConsoleInterface& c, GameMap& gameMap) |
| 308 | { |
| 309 | if(args.size() < 2) |
| 310 | return Command::Result::INVALID_ARGUMENT; |
| 311 | |
| 312 | int seatId = Helper::toInt(args[1]); |
| 313 | gameMap.consoleToggleSeatVisualDebug(seatId); |
| 314 | return Command::Result::SUCCESS; |
| 315 | } |
| 316 | |
| 317 | Command::Result cSrvToggleFOW(const Command::ArgumentList_t& args, ConsoleInterface& c, GameMap& gameMap) |
| 318 | { |
nothing calls this directly
no test coverage detected