diff options
Diffstat (limited to 'core/src/command/map/Remove.kt')
| -rw-r--r-- | core/src/command/map/Remove.kt | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/core/src/command/map/Remove.kt b/core/src/command/map/Remove.kt new file mode 100644 index 0000000..f8aab4f --- /dev/null +++ b/core/src/command/map/Remove.kt @@ -0,0 +1,32 @@ +package cat.freya.khs.command.map + +import cat.freya.khs.Khs +import cat.freya.khs.command.util.Command +import cat.freya.khs.player.Player +import cat.freya.khs.runChecks + +class KhsMapRemove : Command { + override val label = "remove" + override val usage = listOf("map") + override val description = "Remove a map from the plugin" + + override fun execute(plugin: Khs, player: Player, args: List<String>) { + val (name) = args + runChecks(plugin, player) { + mapExists(name) + gameNotInProgress() + lobbyEmpty() + } + + plugin.maps.remove(name) + plugin.saveConfig() + + player.message(plugin.locale.prefix.default + plugin.locale.map.deleted.with(name)) + } + + override fun autoComplete(plugin: Khs, parameter: String, typed: String): List<String> = + when (parameter) { + "map" -> plugin.maps.keys.filter { it.startsWith(typed) } + else -> listOf() + } +} |