From 5ff7d77225bee700bfe852577cd2f1311cd34d0f Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Wed, 17 Dec 2025 04:03:44 +0100 Subject: [PATCH] Fixes wizard/timeline rewind sound runtimes (#94471) ## About The Pull Request These didn't pass the volume and runtimed ## Changelog :cl: fix: Fixed wizard/timeline rewind sound runtimes /:cl: --- code/datums/components/dejavu.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/datums/components/dejavu.dm b/code/datums/components/dejavu.dm index 34b9d0e579f..dec04ff146f 100644 --- a/code/datums/components/dejavu.dm +++ b/code/datums/components/dejavu.dm @@ -137,12 +137,12 @@ no_rewinds_message = "\"Rewind complete. You have arrived at: 10 seconds ago.\"" /datum/component/dejavu/timeline/rewind() - playsound(get_turf(parent), 'sound/items/modsuit/rewinder.ogg') - . = ..() + playsound(get_turf(parent), 'sound/items/modsuit/rewinder.ogg', 50, TRUE) + return ..() /datum/component/dejavu/wizard rewind_message = "Your temporal ward activated, pulling you through spacetime!" /datum/component/dejavu/wizard/rewind() - playsound(get_turf(parent), 'sound/items/modsuit/rewinder.ogg') - . = ..() + playsound(get_turf(parent), 'sound/items/modsuit/rewinder.ogg', 50, TRUE) + return ..()