From 43711bf3191278ad469394e58dffd197004912c3 Mon Sep 17 00:00:00 2001 From: hao Date: Sat, 25 Jul 2026 19:40:37 +0800 Subject: [PATCH] Add owospeak filter to felinid species --- .../mob/living/carbon/human/species_types/felinid.dm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species_types/felinid.dm b/code/modules/mob/living/carbon/human/species_types/felinid.dm index 124196d02af5de..2534dbc2bc5ee2 100644 --- a/code/modules/mob/living/carbon/human/species_types/felinid.dm +++ b/code/modules/mob/living/carbon/human/species_types/felinid.dm @@ -194,3 +194,13 @@ ), ) return to_add +/datum/species/human/felinid/handle_speech(message) + message = replacetext(message, "r", "w") + message = replacetext(message, "R", "W") + message = replacetext(message, "l", "w") + message = replacetext(message, "L", "W") + if(prob(30)) + message += " :3" + if(prob(20)) + message = "OwO " + message + return ..(message)