aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/dulkirmod/command/JoinDungeonCommand.kt
blob: d5e58c4e0cc32b76afccc3004815b1deb8dc1f23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package dulkirmod.command

import dulkirmod.config.DulkirConfig
import dulkirmod.utils.TextUtils
import net.minecraft.command.CommandException
import net.minecraft.command.ICommandSender

class JoinDungeonCommand : ClientCommandBase("joindungeon") {
    @Throws(CommandException::class)
    override fun processCommand(sender: ICommandSender, args: Array<String>) {
        var arguments = args.contentToString().replace("[", "").replace("]", "").replace(",", "")
        var type = ""
        var num = ""
        if (args[0] == "master_catacombs") {
            type = "M"
        } else if (args[0] == "catacombs") {
            type = "F"
        }

        // Try statement so message is consistent if user gives bad input
        try {
            if (args[1].toInt() in 1..7) {
                num = args[1]
            }
        } catch (_: NumberFormatException) {}

        if (DulkirConfig.dungeonCommandConfirm) {
            TextUtils.info("§6Running command: $type$num")
        }
        TextUtils.sendMessage("/joindungeon $arguments")
    }
}