From 5fc59f53a149ece7f0aaa685a2eec685901e763f Mon Sep 17 00:00:00 2001 From: Bjorn Neergaard Date: Thu, 4 Feb 2016 17:17:15 -0600 Subject: [PATCH] Fix lizard hissing --- code/modules/mob/living/carbon/human/species_types.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm index 74ba5292a99..13f1b36d0bc 100644 --- a/code/modules/mob/living/carbon/human/species_types.dm +++ b/code/modules/mob/living/carbon/human/species_types.dm @@ -74,8 +74,8 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H) return randname -var/regex/lizard_hiss = new("s{1,2}(?!s)", "g") -var/regex/lizard_hiSS = new("S{1,2}(?!S)", "g") +var/regex/lizard_hiss = new("s+", "g") +var/regex/lizard_hiSS = new("S+", "g") /datum/species/lizard/handle_speech(message) if(copytext(message, 1, 2) != "*") message = lizard_hiss.Replace(message, "sss")