From: Lanius Trolling Date: Mon, 1 Aug 2022 17:01:17 +0000 (-0400) Subject: Prevent P-SH from being rendered as PS-H X-Git-Url: https://gitweb.starshipfights.net/?a=commitdiff_plain;h=b6ab0ef84f38982d2aa5fcfa51a0cbbd0f8c0558;p=factbooks Prevent P-SH from being rendered as PS-H --- diff --git a/src/main/kotlin/info/mechyrdia/lore/tylan_language.kt b/src/main/kotlin/info/mechyrdia/lore/tylan_language.kt index 1081507..56c59d0 100644 --- a/src/main/kotlin/info/mechyrdia/lore/tylan_language.kt +++ b/src/main/kotlin/info/mechyrdia/lore/tylan_language.kt @@ -15,15 +15,16 @@ object TylanAlphabet { Regex("y") to "N", Regex("[qw-z]") to "", + Regex("ch") to "C", + Regex("dh") to "D", + Regex("sh") to "S", + Regex("th") to "T", + Regex("bs") to "B", Regex("gs") to "G", Regex("ks") to "K", Regex("ps") to "P", - Regex("ch") to "C", - Regex("dh") to "D", - Regex("sh") to "S", - Regex("th") to "T", Regex("ff") to "F", Regex("fv") to "V", Regex("hj") to "J",