From 886a782e409105a153233b3dfdeb3e287f73fb82 Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Thu, 16 Oct 2025 15:28:13 -0500 Subject: [PATCH] fix $pref::SFX::channelVolume0 default should be 1 --- Templates/BaseGame/game/data/defaults.tscript | 1 + 1 file changed, 1 insertion(+) diff --git a/Templates/BaseGame/game/data/defaults.tscript b/Templates/BaseGame/game/data/defaults.tscript index c666f3463..a7a57df14 100644 --- a/Templates/BaseGame/game/data/defaults.tscript +++ b/Templates/BaseGame/game/data/defaults.tscript @@ -116,6 +116,7 @@ $pref::SFX::masterVolume = 0.8; /// The startup sound channel volumes. These are /// used to control the overall volume of different /// classes of sounds. +$pref::SFX::channelVolume0 = 1; $pref::SFX::channelVolume1 = 1; $pref::SFX::channelVolume2 = 1; $pref::SFX::channelVolume3 = 1;