Skip to content

Commit

Permalink
tweak(sound): change megaphone and clap volume
Browse files Browse the repository at this point in the history
Длинные коридоры "Исхода" со своим эхо делали минус уши нахуй
  • Loading branch information
P4elique committed Oct 8, 2023
1 parent 8753e66 commit ae9a93c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/items/devices/megaphone.dm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
/obj/item/device/megaphone/proc/speak(mob/living/user, message, emagged = FALSE)
for(var/mob/O in (viewers(user)))
O.show_message("<B>[user]</B> broadcasts, [FONT_GIANT("\"[emagged ? pick(insultmsg) : message]\"")]", AUDIBLE_MESSAGE)
playsound(src, 'sound/items/megaphone.ogg', 50, 0, 1)
playsound(src, 'sound/items/megaphone.ogg', 20, 0, 1)
if(O.get_preference_value(/datum/client_preference/runechat) == GLOB.PREF_YES && !O.is_deaf())
O.create_chat_message(O, message, FALSE, "big")
for(var/obj/item/device/radio/intercom/I in view(3, user))
Expand Down
2 changes: 1 addition & 1 deletion code/modules/emotes/emote_define.dm
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
if ("whistle")
playsound(user, SFX_WHISTLE, 25, 1)
if ("clap")
playsound(user, SFX_CLAP, 50, 0)
playsound(user, SFX_CLAP, 30, 0)
if ("snore")
playsound(user, SFX_SNORE, 25, 1)

Expand Down

0 comments on commit ae9a93c

Please sign in to comment.