diff --git a/code/modules/emotes/definitions/synthetics.dm b/code/modules/emotes/definitions/synthetics.dm index eedad890e5..ea3177ca42 100644 --- a/code/modules/emotes/definitions/synthetics.dm +++ b/code/modules/emotes/definitions/synthetics.dm @@ -13,6 +13,11 @@ emote_message_3p = "pings." emote_sound = 'sound/machines/ping.ogg' +/decl/emote/audible/synth/bing + key = "bing" + emote_message_3p = "bings." + emote_sound = 'sound/machines/ping.ogg' + /decl/emote/audible/synth/buzz key = "buzz" emote_message_3p = "buzzes." diff --git a/code/modules/mob/living/silicon/emote.dm b/code/modules/mob/living/silicon/emote.dm index b8b62be7a5..dc077dfc2a 100644 --- a/code/modules/mob/living/silicon/emote.dm +++ b/code/modules/mob/living/silicon/emote.dm @@ -1,6 +1,7 @@ var/global/list/_silicon_default_emotes = list( /decl/emote/audible/synth, /decl/emote/audible/synth/ping, + /decl/emote/audible/synth/bing, /decl/emote/audible/synth/buzz, /decl/emote/audible/synth/confirm, /decl/emote/audible/synth/deny, diff --git a/code/modules/mob/living/silicon/robot/emote.dm b/code/modules/mob/living/silicon/robot/emote.dm index 330bde8e21..5322142390 100644 --- a/code/modules/mob/living/silicon/robot/emote.dm +++ b/code/modules/mob/living/silicon/robot/emote.dm @@ -17,6 +17,7 @@ var/global/list/_robot_default_emotes = list( /decl/emote/visible/sidestep, /decl/emote/audible/synth, /decl/emote/audible/synth/ping, + /decl/emote/audible/synth/bing, /decl/emote/audible/synth/buzz, /decl/emote/audible/synth/confirm, /decl/emote/audible/synth/deny,