| 319 | } |
| 320 | |
| 321 | PluginCommand *EndstoneServer::getPluginCommand(std::string name) const |
| 322 | { |
| 323 | if (auto command = command_map_->getCommand(name)) { |
| 324 | return command->asPluginCommand(); |
| 325 | } |
| 326 | return nullptr; |
| 327 | } |
| 328 | |
| 329 | ConsoleCommandSender &EndstoneServer::getCommandSender() const |
| 330 | { |
no test coverage detected