Skip to content

Commit 070403b

Browse files
committed
chore: move reply boop over sack notifications
1 parent 7b51d93 commit 070403b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/kotlin/me/owdding/skyocean/config/features/chat/ChatConfig.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ object ChatConfig : CategoryKt("chat") {
2626
this.translation = "skyocean.config.chat.piggy_repair_helper"
2727
}
2828

29+
var replyBoop by boolean(true) {
30+
this.translation = "skyocean.config.chat.reply_boop"
31+
}
32+
2933
init {
3034
separator {
3135
title = "Sack Notification"
@@ -39,8 +43,4 @@ object ChatConfig : CategoryKt("chat") {
3943
var sackNotificationItems by strings("Glossy Gemstone") {
4044
this.translation = "skyocean.config.chat.sack_notification_items"
4145
}
42-
43-
var replyBoop by boolean(true) {
44-
this.translation = "skyocean.config.chat.reply_boop"
45-
}
4646
}

src/main/kotlin/me/owdding/skyocean/features/chat/SackNotification.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ object SackNotification {
2727
Text.join(
2828
"Sack Notification",
2929
ChatUtils.SEPERATOR_COMPONENT,
30-
Text.join(amount.map { Text.of("${it.first} x${it.second}", OceanColors.HIGHLIGHT) }, separator = Text.of(", "))
30+
Text.join(amount.map { Text.of("${it.first} x${it.second}", OceanColors.HIGHLIGHT) }, separator = Text.of(", ")),
3131
) {
3232
color = OceanColors.BASE_TEXT
3333
}.sendWithPrefix()

0 commit comments

Comments
 (0)