From b6ab0ef84f38982d2aa5fcfa51a0cbbd0f8c0558 Mon Sep 17 00:00:00 2001 From: Lanius Trolling Date: Mon, 1 Aug 2022 13:01:17 -0400 Subject: [PATCH] Prevent P-SH from being rendered as PS-H --- src/main/kotlin/info/mechyrdia/lore/tylan_language.kt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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", -- 2.25.1