Fixes proteans being unable to do synth emotes (#4200)

## About The Pull Request
Fixes #4106 
## Why It's Good For The Game
Fixes a bug
## Proof Of Testing


![image](https://github.com/user-attachments/assets/04207277-edfa-4e85-b3ba-54016f70f331)
## Changelog
🆑
fix: fixed proteans being unable to use synth emotes
/🆑
This commit is contained in:
Alexis
2025-07-09 15:13:45 -06:00
committed by GitHub
parent a1f9c80c3d
commit f659ab83a5
2 changed files with 5 additions and 5 deletions
@@ -7,7 +7,7 @@
message = "chirps happily!"
vary = TRUE
sound = 'modular_skyrat/modules/emotes/sound/emotes/dwoop.ogg'
allowed_species = list(/datum/species/synthetic)
allowed_species = list(/datum/species/synthetic, /datum/species/protean)
cooldown = 2 SECONDS
/datum/emote/silicon/yes
@@ -3,7 +3,7 @@
message = "emits a disconcerting tone."
vary = FALSE
sound = 'modular_zubbers/code/modules/emotes/sound/synth_voice/synth_scary.ogg'
allowed_species = list(/datum/species/synthetic)
allowed_species = list(/datum/species/synthetic, /datum/species/protean)
cooldown = 2 SECONDS
/datum/emote/living/human/error
@@ -11,7 +11,7 @@
message = "experiences a system error."
vary = FALSE
sound = 'modular_zubbers/code/modules/emotes/sound/synth_voice/synth_error.ogg'
allowed_species = list(/datum/species/synthetic)
allowed_species = list(/datum/species/synthetic, /datum/species/protean)
cooldown = 2 SECONDS
/datum/emote/living/human/rstartup
@@ -19,7 +19,7 @@
message = "chimes to life."
vary = FALSE
sound = 'modular_zubbers/code/modules/emotes/sound/synth_voice/synth_startup.ogg'
allowed_species = list(/datum/species/synthetic)
allowed_species = list(/datum/species/synthetic, /datum/species/protean)
cooldown = 2 SECONDS
/datum/emote/living/human/rshutdown
@@ -27,5 +27,5 @@
message = "emits a nostalgic tone as they fall silent."
vary = FALSE
sound = 'modular_zubbers/code/modules/emotes/sound/synth_voice/synth_shutdown.ogg'
allowed_species = list(/datum/species/synthetic)
allowed_species = list(/datum/species/synthetic, /datum/species/protean)
cooldown = 2 SECONDS