Skip to content

Commit

Permalink
removes blep as an emote. annoys me.
Browse files Browse the repository at this point in the history
  • Loading branch information
SynthTwo committed Jan 8, 2025
1 parent 4a94632 commit 35dafa1
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 18 deletions.
6 changes: 0 additions & 6 deletions modular_nova/master_files/code/datums/traits/neutral.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
5 changes: 0 additions & 5 deletions modular_nova/modules/emote_panel/code/emote_panel.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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+"
Expand Down
7 changes: 0 additions & 7 deletions modular_nova/modules/emotes/code/emotes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 35dafa1

Please sign in to comment.