Fix jukebox volume setting (#19312)

* Fi jukebox volume setting

Jukebox volume is a 0-1 not a 0-100
:fenneko:

* Apply 0-1 remap fixes to more media code
This commit is contained in:
ARGUS
2026-03-20 00:29:50 +01:00
committed by GitHub
parent 6dace8160f
commit acc2f6046d
2 changed files with 3 additions and 3 deletions
@@ -254,7 +254,7 @@
step = 1
/datum/preference/numeric/living/jukebox_volume/apply_to_client_updated(client/client, value)
client?.media?.update_volume(value)
client?.media?.update_volume(value / 100)
/datum/preference/numeric/volume
abstract_type = /datum/preference/numeric/volume