Fixes forced speech nanite oversight (#55164)

All of the stunning emotes were blacklisted from the forced speech program. However, *faint was not added this to the list, and this is an oversight. This is a simple one line fix to add it to the blacklist.
This commit is contained in:
Coffee
2020-11-26 14:40:22 +00:00
committed by GitHub
parent 54ff57019c
commit 4e243c626e
@@ -136,7 +136,8 @@
rogue_types = list(/datum/nanite_program/brain_misfire, /datum/nanite_program/brain_decay)
var/static/list/blacklist = list(
"*surrender",
"*collapse"
"*collapse",
"*faint",
)
/datum/nanite_program/comm/speech/register_extra_settings()