diff options
author | Appability <appable@icloud.com> | 2022-11-12 23:39:20 -0800 |
---|---|---|
committer | Appability <appable@icloud.com> | 2022-11-12 23:39:20 -0800 |
commit | 129cb8b04c7ae239ffd2546e8e48e19506b9f4d1 (patch) | |
tree | 1a8f09b58efd609d0a0de6ca0718ef4a31237d4b /src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt | |
parent | 21a3f8f1ed7230655cfe2f1e93b8edb14a2a21d0 (diff) | |
download | AmbientAddons-129cb8b04c7ae239ffd2546e8e48e19506b9f4d1.tar.gz AmbientAddons-129cb8b04c7ae239ffd2546e8e48e19506b9f4d1.tar.bz2 AmbientAddons-129cb8b04c7ae239ffd2546e8e48e19506b9f4d1.zip |
clean up help/usage messages
Diffstat (limited to 'src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt')
-rw-r--r-- | src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt b/src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt index 538485c..1cead71 100644 --- a/src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt +++ b/src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt @@ -1,6 +1,7 @@ package com.ambientaddons.commands import AmbientAddons.Companion.persistentData +import com.ambientaddons.utils.Chat import com.ambientaddons.utils.Extensions.withModPrefix import gg.essential.universal.UChat @@ -33,10 +34,14 @@ object AutoBuyCommand { } } else -> { - UChat.chat("§2§lUsage".withModPrefix()) - UChat.chat(" §aAdd item: §b/ambient buy add <Skyblock ID> [max allowable price]") - UChat.chat(" §aRemove item: §b/ambient buy remove <Skyblock ID>") - UChat.chat(" §aList: §b/ambient buy list") + UChat.chat(""" + ${Chat.getChatBreak()} + §b§lUsage: + §a/ambient buy add <Skyblock ID> [max price] §eto add an item. + §a/ambient buy remove <Skyblock ID> §eto remove an item. + §a/ambient buy list §eto view current autobuy list + ${Chat.getChatBreak()} + """.trimIndent()) } } } |