Disable vehicle sounds entirely when running headlessly

pull/642/head
Jonathan G Rennison 3 months ago
parent f0ec7a7693
commit fa003ebda3

@ -186,6 +186,7 @@ SoundID GetNewGRFSoundID(const GRFFile *file, SoundID sound_id)
*/
bool PlayVehicleSound(const Vehicle *v, VehicleSoundEvent event, bool force)
{
if (IsHeadless()) return true;
if ((!_settings_client.sound.vehicle || _settings_client.music.effect_vol == 0) && !force) return true;
const GRFFile *file = v->GetGRF();

Loading…
Cancel
Save