mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-17 02:54:44 +01:00
Fix lizard hissing
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user