[wheybags][Modded] min_range doesn't seem to work.
Posted: Sun Jan 28, 2018 11:15 pm
Two examples:
The Plasma cannons in Bob's vehicle equipment mod (All 6 tiers of the weapon, requires Bob's Logistics for armored trains or Bob's Warfare for Tanks) has a min_range set, yet seems to ignore it.
The Tank Artillery Cannon in Bob's warfare mod (MK2 and MK3 tank) also has a min_range set, yet seems to ignore it.
Perhaps I'm doing it wrong?
Mod links:
https://mods.factorio.com/mods/Bobingab ... eequipment
https://mods.factorio.com/mods/Bobingabout/bobwarfare
https://mods.factorio.com/mods/Bobingabout/boblogistics
Code extracts:
The plasma cannon code is a bit harder to quote, as the weapon is created in a function. But the fact that your tank can shoot at itself with it's artillery weapon should be example enough.
The Plasma cannons in Bob's vehicle equipment mod (All 6 tiers of the weapon, requires Bob's Logistics for armored trains or Bob's Warfare for Tanks) has a min_range set, yet seems to ignore it.
The Tank Artillery Cannon in Bob's warfare mod (MK2 and MK3 tank) also has a min_range set, yet seems to ignore it.
Perhaps I'm doing it wrong?
Mod links:
https://mods.factorio.com/mods/Bobingab ... eequipment
https://mods.factorio.com/mods/Bobingabout/bobwarfare
https://mods.factorio.com/mods/Bobingabout/boblogistics
Code extracts:
Code: Select all
{
type = "gun",
name = "tank-artillery-1",
icon = "__bobwarfare__/graphics/icons/tank-artillery.png",
icon_size = 32,
flags = {"goes-to-main-inventory", "hidden"},
subgroup = "gun",
order = "z[tank]-b[artillery-1]",
stack_size = 5,
attack_parameters =
{
type = "projectile",
ammo_category = "artillery-shell",
cooldown = 225,
movement_slow_down_factor = 0,
projectile_creation_distance = 1.6,
projectile_center = {-0.15625, -0.07812},
range = 96,
min_range = 8,
sound =
{
{
filename = "__base__/sound/fight/tank-cannon.ogg",
volume = 0.7
}
}
},
},
{
type = "gun",
name = "tank-artillery-2",
icon = "__bobwarfare__/graphics/icons/tank-artillery.png",
icon_size = 32,
flags = {"goes-to-main-inventory", "hidden"},
subgroup = "gun",
order = "z[tank]-b[artillery-2]",
stack_size = 5,
attack_parameters =
{
type = "projectile",
ammo_category = "artillery-shell",
cooldown = 200,
movement_slow_down_factor = 0,
projectile_creation_distance = 1.6,
projectile_center = {-0.15625, -0.07812},
range = 128,
min_range = 8,
damage_modifier = 1.5,
sound =
{
{
filename = "__base__/sound/fight/tank-cannon.ogg",
volume = 0.7
}
}
},
},