diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-04-10 09:00:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-10 09:00:22 +0200 |
commit | 3397cc4474e3165865707182a5dcacf5bb4e68bd (patch) | |
tree | c714eab2aae2453a01f546cb4811c87dcd18a7e7 /src/main/java/at/hannibal2/skyhanni/features/event | |
parent | 8c86c32807dc697218d71bdc9eef7aef68ba90e7 (diff) | |
download | skyhanni-3397cc4474e3165865707182a5dcacf5bb4e68bd.tar.gz skyhanni-3397cc4474e3165865707182a5dcacf5bb4e68bd.tar.bz2 skyhanni-3397cc4474e3165865707182a5dcacf5bb4e68bd.zip |
Backend: Chat and Open Config (#1396)
Co-authored-by: Empa <42304516+ItsEmpa@users.noreply.github.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Co-authored-by: Cal <cwolfson58@gmail.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/event')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt index 96baef5a3..7fd5cde54 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt @@ -328,7 +328,11 @@ object GriffinBurrowHelper { if (!isEnabled()) { if (currentMayor != Mayor.DIANA) { - ChatUtils.clickableChat("§cSelect Diana as mayor overwrite!", "sh assume mayor") + ChatUtils.chatAndOpenConfig( + "§cSelect Diana as mayor overwrite!", + SkyHanniMod.feature.dev.debug::assumeMayor + ) + } else { ChatUtils.userError("Have an Ancestral Spade in the inventory!") } |