blob: fd5ed3d4b1d2d849b1e5af7e52cf219789ea42c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
}
|