diff --git a/code/datums/emote/emote_verbs.dm b/code/datums/emote/emote_verbs.dm index dce2eff87c1..4913cbcb264 100644 --- a/code/datums/emote/emote_verbs.dm +++ b/code/datums/emote/emote_verbs.dm @@ -476,11 +476,6 @@ set category = "Эмоции" emote("whip_l", intentional = TRUE) -/mob/living/carbon/human/proc/emote_rumble() - set name = "< Урчать >" - set category = "Эмоции" - emote("rumble", intentional = TRUE) - /mob/living/carbon/human/proc/emote_hiss_unathi() set name = "< Шипеть >" set category = "Эмоции" diff --git a/code/datums/keybindings/emote.dm b/code/datums/keybindings/emote.dm index a8006c729a4..ccda0a6d7c2 100644 --- a/code/datums/keybindings/emote.dm +++ b/code/datums/keybindings/emote.dm @@ -608,10 +608,6 @@ linked_emote = /datum/emote/living/carbon/human/unathi/threat name = "Угрожать (унати)" -/datum/keybinding/emote/carbon/human/unathi/rumble - linked_emote = /datum/emote/living/carbon/human/unathi/rumble - name = "Урчать (унати)" - /datum/keybinding/emote/carbon/human/unathi/roar linked_emote = /datum/emote/living/carbon/human/unathi/roar name = "Рычать (унати)" diff --git a/code/modules/mob/living/carbon/human/human_emote.dm b/code/modules/mob/living/carbon/human/human_emote.dm index 21909b8d2a3..83c644474c6 100644 --- a/code/modules/mob/living/carbon/human/human_emote.dm +++ b/code/modules/mob/living/carbon/human/human_emote.dm @@ -1037,25 +1037,6 @@ // Credit to Jamius (freesound.org) for the sound. sound = 'sound/effects/unathihiss.ogg' - -/datum/emote/living/carbon/human/unathi/rumble - key = "rumble" - key_third_person = "rumble" - message = "урч%(ит,ат)%." - message_mime = "тихо урч%(ит,ат)%." - message_postfix = " на %t." - message_param = EMOTE_PARAM_USE_POSTFIX - emote_type = EMOTE_AUDIBLE|EMOTE_MOUTH - muzzled_noises = list("урчащие", "гортанные") - audio_cooldown = 30 SECONDS - age_based = TRUE - volume = 65 - sound = list( - 'sound/voice/unathi/rumble.ogg', - 'sound/voice/unathi/rumble2.ogg', - ) - - /datum/emote/living/carbon/human/unathi/roar key = "roar" key_third_person = "roar"