diff options
author | Linnea Gräf <nea@nea.moe> | 2024-03-03 18:04:45 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-03-03 18:04:45 +0100 |
commit | b025b06b6b799b16cfcfb26ee8ffad27879a1bfb (patch) | |
tree | 42053f84a198dd826235b403caa63f351897debf /src/main/kotlin/moe/nea/firmament/features/texturepack/StringMatcher.kt | |
parent | 3bfec3033e9d905514d5c1c6c62953c2a1646af0 (diff) | |
download | firmament-b025b06b6b799b16cfcfb26ee8ffad27879a1bfb.tar.gz firmament-b025b06b6b799b16cfcfb26ee8ffad27879a1bfb.tar.bz2 firmament-b025b06b6b799b16cfcfb26ee8ffad27879a1bfb.zip |
Add not predicate and docs to custom predicates
[no changelog]
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/features/texturepack/StringMatcher.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/features/texturepack/StringMatcher.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/features/texturepack/StringMatcher.kt b/src/main/kotlin/moe/nea/firmament/features/texturepack/StringMatcher.kt index 0fb8e00..e9d39a8 100644 --- a/src/main/kotlin/moe/nea/firmament/features/texturepack/StringMatcher.kt +++ b/src/main/kotlin/moe/nea/firmament/features/texturepack/StringMatcher.kt @@ -52,7 +52,7 @@ interface StringMatcher { } if (jsonElement is JsonObject) { val regex = jsonElement["regex"] as JsonPrimitive? - val text = jsonElement["text"] as JsonPrimitive? + val text = jsonElement["equals"] as JsonPrimitive? val shouldStripColor = when (val color = (jsonElement["color"] as JsonPrimitive?)?.asString) { "preserve" -> false "strip", null -> true |