[1.1.87] incorrect sound function
Posted: Fri Sep 01, 2023 7:43 pm
Hey
"__base__/prototypes/entity/sounds.lua":
function "sounds.large_explosion(volume)" has an unused "volume" parameter.
The volume is always set to 0.55 in spite of different prototypes trying to set different volumes.
Examples from "__base__/prototypes/entity/explosions.lua":
Implying that different volumes are a wanted feature but it's not correctly scripted.
"__base__/prototypes/entity/sounds.lua":
function "sounds.large_explosion(volume)" has an unused "volume" parameter.
The volume is always set to 0.55 in spite of different prototypes trying to set different volumes.
Examples from "__base__/prototypes/entity/explosions.lua":
Code: Select all
(...)
{
type = "explosion",
name = "big-explosion",
(...)
sound = sounds.large_explosion(1.0)
},
(...)
{
type = "explosion",
name = "storage-tank-explosion",
(...)
sound = sounds.large_explosion(0.8),
},(...)