Fix Flamethrower turret damage upgrade modifier
Posted: Tue Jan 19, 2021 2:19 pm
I'm trying to mod a different flamethrower turret damage upgrade modifier at this place:
It is shown correctly in bonus UI, but not in Flamethrower-Turret tooltip.
If I change the value for flamethrower ammo, it works also for flamethrower turret.
So I'm assuming its a bug
Code: Select all
{
type = "technology",
name = "refined-flammables-1",
icon_size = 256, icon_mipmaps = 4,
icons = util.technology_icon_constant_damage(refined_flammables_icon),
effects =
{
{
type = "ammo-damage",
ammo_category = "flamethrower",
modifier = 0.2 <-- changing this also works for flamethrower turret
},
{
type = "turret-attack",
turret_id = "flamethrower-turret",
modifier = 0.4 -- CHANGED
}
},
...
If I change the value for flamethrower ammo, it works also for flamethrower turret.
So I'm assuming its a bug