Fixes wizard/timeline rewind sound runtimes (#94471)

## About The Pull Request

These didn't pass the volume and runtimed

## Changelog
🆑
fix: Fixed wizard/timeline rewind sound runtimes
/🆑
This commit is contained in:
SmArtKar
2025-12-16 22:03:44 -05:00
committed by GitHub
parent 813a13014a
commit 5ff7d77225
+4 -4
View File
@@ -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 ..()