aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2025-01-08 19:25:29 +0100
committerLinnea Gräf <nea@nea.moe>2025-01-08 19:25:29 +0100
commitd1e16a47819509ed645bb93e1a173e0a97025cef (patch)
treeefbe886d9ac1ab4ea01788cb4842812fd0af9079 /src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt
parentf694daf322bbb4ff530a9332547c5c8337c3e0c0 (diff)
downloadLocalTransactionLedger-d1e16a47819509ed645bb93e1a173e0a97025cef.tar.gz
LocalTransactionLedger-d1e16a47819509ed645bb93e1a173e0a97025cef.tar.bz2
LocalTransactionLedger-d1e16a47819509ed645bb93e1a173e0a97025cef.zip
build: Move mod to subproject
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt')
-rw-r--r--src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt b/src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt
deleted file mode 100644
index fd5ed3d..0000000
--- a/src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package moe.nea.ledger.config
-
-import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean
-import io.github.notenoughupdates.moulconfig.annotations.ConfigOption
-
-class DebugOptions {
- @ConfigOption(name = "Log entries to chat",
- desc = "Appends all logged entries into the chat as they are logged. This option does not persist on restarts.")
- @Transient
- @ConfigEditorBoolean
- @JvmField
- var logEntries = false
-}