| 23 | namespace endstone::core { |
| 24 | |
| 25 | SeedCommand::SeedCommand() : EndstoneCommand("seed") |
| 26 | { |
| 27 | setDescription("Outputs the world seed."); |
| 28 | setUsages("/seed"); |
| 29 | setPermissions("endstone.command.seed"); |
| 30 | } |
| 31 | |
| 32 | bool SeedCommand::execute(CommandSender &sender, const std::vector<std::string> &args) const |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected