diff --git a/modular_nova/master_files/code/datums/traits/neutral.dm b/modular_nova/master_files/code/datums/traits/neutral.dm index dba2a128ede..836de55adc0 100644 --- a/modular_nova/master_files/code/datums/traits/neutral.dm +++ b/modular_nova/master_files/code/datums/traits/neutral.dm @@ -291,7 +291,6 @@ GLOBAL_LIST_INIT(possible_snout_sensitivities, list( "Stun" = SEVERITY_STUN, "Sneeze" = SEVERITY_SNEEZE, //Includes a stun "Collapse" = SEVERITY_KNOCKDOWN, - "Blep" = SEVERITY_BLEP, )) /datum/quirk/sensitivesnout @@ -335,15 +334,10 @@ GLOBAL_LIST_INIT(possible_snout_sensitivities, list( to_chat(quirk_holder, span_warning("[attacker] boops you on your sensitive nose, sending you to the ground!")) quirk_holder.Knockdown(1 SECONDS) quirk_holder.apply_damage(30, STAMINA) - if(SEVERITY_BLEP) - if(can_emote) - to_chat(quirk_holder, span_warning("[attacker] boops you on your sensitive nose! You stick your tongue out on reflex!")) - quirk_holder.emote("blep") #undef SEVERITY_STUN #undef SEVERITY_SNEEZE #undef SEVERITY_KNOCKDOWN -#undef SEVERITY_BLEP /datum/quirk/overweight name = "Overweight" diff --git a/modular_nova/modules/emote_panel/code/emote_panel.dm b/modular_nova/modules/emote_panel/code/emote_panel.dm index d1a36163a19..c991ce0cdf0 100644 --- a/modular_nova/modules/emote_panel/code/emote_panel.dm +++ b/modular_nova/modules/emote_panel/code/emote_panel.dm @@ -788,11 +788,6 @@ set category = "Emotes+" usr.emote("whistle", intentional = TRUE) -/mob/living/proc/emote_blep() - set name = "~ Blep" - set category = "Emotes+" - usr.emote("blep", intentional = TRUE) - /mob/living/proc/emote_bork() set name = "> Bork" set category = "Emotes+" diff --git a/modular_nova/modules/emotes/code/emotes.dm b/modular_nova/modules/emotes/code/emotes.dm index 4d825630018..dc426d0eaef 100644 --- a/modular_nova/modules/emotes/code/emotes.dm +++ b/modular_nova/modules/emotes/code/emotes.dm @@ -398,13 +398,6 @@ vary = TRUE sound = 'modular_nova/modules/emotes/sound/voice/caw2.ogg' -/datum/emote/living/blep - key = "blep" - key_third_person = "bleps" - message = "bleps their tongue out. Blep." - message_AI = "shows an image of a random blepping animal. Blep." - message_robot = "bleps their robo-tongue out. Blep." - /datum/emote/living/bork key = "bork" key_third_person = "borks"