| 294 | } |
| 295 | |
| 296 | Command::Result cSrvCreatureVisDebug(const Command::ArgumentList_t& args, ConsoleInterface& c, GameMap& gameMap) |
| 297 | { |
| 298 | if(args.size() < 2) |
| 299 | return Command::Result::INVALID_ARGUMENT; |
| 300 | |
| 301 | const std::string& name = args[1]; |
| 302 | gameMap.consoleToggleCreatureVisualDebug(name); |
| 303 | |
| 304 | return Command::Result::SUCCESS; |
| 305 | } |
| 306 | |
| 307 | Command::Result cSrvSeatVisDebug(const Command::ArgumentList_t& args, ConsoleInterface& c, GameMap& gameMap) |
| 308 | { |
nothing calls this directly
no test coverage detected