mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
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  ## Changelog 🆑 fix: fixed proteans being unable to use synth emotes /🆑
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user