aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/ConfigCommand.kt
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-12-06 19:46:33 +0100
committerLinnea Gräf <nea@nea.moe>2024-12-06 19:46:33 +0100
commit6bdc91b4bda1497e785af695769acae91e8e7064 (patch)
tree60dede243612d386ae4217e97979062e2b2a67b7 /src/main/kotlin/moe/nea/ledger/ConfigCommand.kt
parentf7507f384459b57460af899bf9ceae4f52f1ea21 (diff)
downloadLocalTransactionLedger-6bdc91b4bda1497e785af695769acae91e8e7064.tar.gz
LocalTransactionLedger-6bdc91b4bda1497e785af695769acae91e8e7064.tar.bz2
LocalTransactionLedger-6bdc91b4bda1497e785af695769acae91e8e7064.zip
feat: Add logging toggle to options
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/ConfigCommand.kt')
-rw-r--r--src/main/kotlin/moe/nea/ledger/ConfigCommand.kt31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/ConfigCommand.kt b/src/main/kotlin/moe/nea/ledger/ConfigCommand.kt
new file mode 100644
index 0000000..5222e3b
--- /dev/null
+++ b/src/main/kotlin/moe/nea/ledger/ConfigCommand.kt
@@ -0,0 +1,31 @@
+package moe.nea.ledger
+
+import io.github.notenoughupdates.moulconfig.common.IMinecraft
+import net.minecraft.command.CommandBase
+import net.minecraft.command.ICommandSender
+
+class ConfigCommand : CommandBase() {
+ override fun canCommandSenderUseCommand(sender: ICommandSender?): Boolean {
+ return true
+ }
+
+ override fun getCommandName(): String {
+ return "ledger"
+ }
+
+ override fun getCommandUsage(sender: ICommandSender?): String {
+ return ""
+ }
+
+ override fun processCommand(sender: ICommandSender?, args: Array<out String>) {
+ val editor = Ledger.managedConfig.getEditor()
+ editor.search(args.joinToString(" "))
+ Ledger.runLater {
+ IMinecraft.instance.openWrappedScreen(editor)
+ }
+ }
+
+ override fun getCommandAliases(): List<String> {
+ return listOf("moneyledger")
+ }
+} \ No newline at end of file