From 3e5262dddfbd0c2b849529103c108acc90b8e286 Mon Sep 17 00:00:00 2001 From: Gristlebee <56049844+Gristlebee@users.noreply.github.com> Date: Thu, 24 Oct 2024 03:19:31 -0700 Subject: [PATCH] Changes the vote sound to announce_dig (#3615) ## About The Pull Request Changes the vote sound to announce_dig.ogg ## Why It's Good For The Game The current vote sound is easy to miss, and I think this one might be better as it's a longer and louder tone. ## Changelog :cl: add: Vote sound changed to announce_dig.ogg /:cl: --- code/datums/votes/_vote_datum.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/votes/_vote_datum.dm b/code/datums/votes/_vote_datum.dm index c34d4600d2b0b..8c7b7234b5163 100644 --- a/code/datums/votes/_vote_datum.dm +++ b/code/datums/votes/_vote_datum.dm @@ -10,7 +10,7 @@ /// If supplied, an override question will be displayed instead of the name of the vote. var/override_question /// The sound effect played to everyone when this vote is initiated. - var/vote_sound = 'sound/misc/compiler-stage2.ogg' + var/vote_sound = 'sound/misc/announce_dig.ogg' /// A list of default choices we have for this vote. var/list/default_choices /// What message do we want to pass to the player-side vote panel as a tooltip?