| 401 | } |
| 402 | |
| 403 | Command::Result cSrvSetCreatureDest(const Command::ArgumentList_t& args, ConsoleInterface& c, GameMap& gameMap) |
| 404 | { |
| 405 | if(args.size() < 3) |
| 406 | return Command::Result::INVALID_ARGUMENT; |
| 407 | |
| 408 | const std::string& name = args[0]; |
| 409 | int x = Helper::toInt(args[1]); |
| 410 | int y = Helper::toInt(args[2]); |
| 411 | gameMap.consoleSetCreatureDestination(name, x, y); |
| 412 | return Command::Result::SUCCESS; |
| 413 | } |
| 414 | |
| 415 | Command::Result cSrvLogFloodFill(const Command::ArgumentList_t&, ConsoleInterface& c, GameMap& gameMap) |
| 416 | { |
nothing calls this directly
no test coverage detected