From 8580de7246831844958c67219bb4f2e025015afc Mon Sep 17 00:00:00 2001 From: ReoDaProtovali <84661000+ReoDaProtovali@users.noreply.github.com> Date: Tue, 10 Sep 2024 18:48:06 -0500 Subject: [PATCH] Bwooooorrrp "Brap" is a word for fart not a burp sound This will go down in github history! --- GainStation13/code/modules/mob/living/emote.dm | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/GainStation13/code/modules/mob/living/emote.dm b/GainStation13/code/modules/mob/living/emote.dm index 7bf093de..1b4a2a2a 100644 --- a/GainStation13/code/modules/mob/living/emote.dm +++ b/GainStation13/code/modules/mob/living/emote.dm @@ -6,17 +6,7 @@ sound = 'GainStation13/sound/voice/gurgle1.ogg' /datum/emote/living/gurgle/get_sound() - return pick('GainStation13/sound/voice/gurgle1.ogg', - 'GainStation13/sound/voice/gurgle2.ogg', - 'GainStation13/sound/voice/gurgle3.ogg') - -/datum/emote/living/gurgle/run_emote(mob/living/user, params) - if(!ishuman(user)) - return FALSE - - playsound(user, "gurgle") - - . = ..() + return get_sfx("gurgle") // Lets get any of the gurgle sounds we have set. /datum/emote/living/burp key = "burp" @@ -33,7 +23,7 @@ if(!.) return FALSE - playsound_prefed(user, noise_type, noise_pref, 100, TRUE, -7) + playsound_prefed(user, noise_type, noise_pref, 100, TRUE, -4) user.reduce_fullness(rand(reduction_min,reduction_max)) @@ -69,6 +59,7 @@ key_third_person = "belches loudly" message = "belches" //god hates me for this -Metha + noise_type = "belch" reduction_min = 6 reduction_max = 12