From 43c7c5452eb924cb4cf5532db86a2c4354b3c0d9 Mon Sep 17 00:00:00 2001 From: Lanius Trolling Date: Wed, 17 Aug 2022 07:49:53 -0400 Subject: [PATCH] Allow a way to render P-S and K-S --- src/main/kotlin/info/mechyrdia/lore/tylan_language.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/kotlin/info/mechyrdia/lore/tylan_language.kt b/src/main/kotlin/info/mechyrdia/lore/tylan_language.kt index b979859..3a7ae28 100644 --- a/src/main/kotlin/info/mechyrdia/lore/tylan_language.kt +++ b/src/main/kotlin/info/mechyrdia/lore/tylan_language.kt @@ -25,6 +25,11 @@ object TylanAlphabet { Regex("ks") to "K", Regex("ps") to "P", + Regex("b's") to "bs", + Regex("g's") to "gs", + Regex("k's") to "ks", + Regex("p's") to "ps", + Regex("ff") to "F", Regex("fv") to "V", Regex("hj") to "J", -- 2.25.1