fix defaults for incomingOptions and remnants of space-seperated emoji

This commit is contained in:
nikky 2018-06-28 01:09:07 +02:00
parent 1356e3682f
commit 35d5865e5d
1 changed files with 6 additions and 6 deletions

View File

@ -53,8 +53,8 @@ data class BaseConfig(val rootDir: File) {
data class IncomingOptions(
val chat: String = "<{username}> {text}",
val joinPart: String = "",//"§6-- {username} {text}",
val action: String = "",//"§5* {username} {text}",
val joinPart: String = "§6-- {username} {text}",
val action: String = "§5* {username} {text}",
var stripColors: Boolean = true
)
@ -66,8 +66,8 @@ data class BaseConfig(val rootDir: File) {
val advancements: Boolean = true,
var stripColors: Boolean = true,
var death: DeathOptions = DeathOptions(),
var joinPart: JoinPartOptions = JoinPartOptions()
var joinPart: JoinPartOptions = JoinPartOptions(),
var death: DeathOptions = DeathOptions()
)
data class DeathOptions(
@ -88,8 +88,8 @@ data class BaseConfig(val rootDir: File) {
"flyIntoWall" to arrayOf("\uD83D\uDCA8"), //💨
"outOfWorld" to arrayOf("\u2734"), //✴
"generic" to arrayOf("\uD83D\uDC7B"), //👻
"magic" to arrayOf(""),
"indirectMagic" to arrayOf(""),
"magic" to arrayOf("", ""),
"indirectMagic" to arrayOf("", ""),
"wither" to arrayOf("\uD83D\uDD71"), //🕱
"anvil" to arrayOf(),
"fallingBlock" to arrayOf(),