aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/dulkirmod/features/chat/VanquisherTrigger.kt
blob: d607df28dc7ccb099139ddefd7e30a4bfac17c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package dulkirmod.features.chat

import dulkirmod.config.Config
import dulkirmod.utils.TextUtils

object VanquisherTrigger {
    fun handle(message: String) {
        if (!Config.vanqBroadcast) return
        if (message == "A Vanquisher is spawning nearby!") {
            TextUtils.sendMessage("/patcher sendcoords")
        }
    }
}