[MIRROR] Flypeople say "s" as "z" and dont get disgusted by toxic food (#2519)

* Flypeople say "s" as "z" and dont get disgusted by toxic food (#55802)

## About The Pull Request

Flypeople will now say "s" as "z" (They already say "z" as "zzz", but s -/> zzz) and arent disgusted by toxic food anymore.

I'm hoping that by the end of my changes, Flypeople could be considered a unique and viable race, being actually worth something other than "that one unmaintained race we have disabled" (best-case scenario is they become fit to be a proper roundstart race)

## Why It's Good For The Game

Flypeople is the forgotten race of /tg/, this makes them more unique and fits for them.
Not being disgusted by toxic food fits well due to Flypeople being considered disgusting and vile creatures.

* Flypeople say "s" as "z" and dont get disgusted by toxic food

Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com>
This commit is contained in:
SkyratBot
2021-01-06 04:22:27 +01:00
committed by GitHub
co-authored by John Willard
parent fd8e01af96
commit 4cc6ee785b
2 changed files with 5 additions and 0 deletions
+4
View File
@@ -121,10 +121,14 @@
/obj/item/organ/tongue/fly/handle_speech(datum/source, list/speech_args)
var/static/regex/fly_buzz = new("z+", "g")
var/static/regex/fly_buZZ = new("Z+", "g")
var/static/regex/fly_buss = new("s+", "g")
var/static/regex/fly_buSS = new("S+", "g")
var/message = speech_args[SPEECH_MESSAGE]
if(message[1] != "*")
message = fly_buzz.Replace(message, "zzz")
message = fly_buZZ.Replace(message, "ZZZ")
message = fly_buss.Replace(message, "z")
message = fly_buSS.Replace(message, "Z")
speech_args[SPEECH_MESSAGE] = message
/obj/item/organ/tongue/fly/Initialize(mapload)