diff options
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt | 13 |
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 -} |