From 771772dbcd64ad05767e90c3b2ec5589a88a0d54 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sun, 10 Jan 2021 15:34:14 -0500 Subject: [PATCH] Lowers the volume of shadowling hatch by 50% (#15266) * 50% off! * A TRUE change Co-authored-by: dearmochi Co-authored-by: dearmochi --- code/game/gamemodes/shadowling/special_shadowling_abilities.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/shadowling/special_shadowling_abilities.dm b/code/game/gamemodes/shadowling/special_shadowling_abilities.dm index 802e0507334..1aa8d628560 100644 --- a/code/game/gamemodes/shadowling/special_shadowling_abilities.dm +++ b/code/game/gamemodes/shadowling/special_shadowling_abilities.dm @@ -66,7 +66,7 @@ GLOBAL_LIST_INIT(possibleShadowlingNames, list("U'ruan", "Y`shej", "Nex", "Hel-u to_chat(H, "You are free!") H.status_flags = temp_flags sleep(10) - playsound(H.loc, 'sound/effects/ghost.ogg', 100, 1) + playsound(H.loc, 'sound/effects/ghost.ogg', 50, TRUE) var/newNameId = pick(GLOB.possibleShadowlingNames) GLOB.possibleShadowlingNames.Remove(newNameId) H.real_name = newNameId