"__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),
},(...)