HelicopterRevival


Adds a fully animated attack helicopter to the game. Ideal for getting from A to B quickly, exploring the map, building islands and nuking biters from the sky. Originally forked from Kumpu with fixes for Factorio 0.18.2+, but adding some enhancements of my own as well.

Content
25 days ago
0.18 - 2.0
78.7K
Transportation

i Integration with 'SchallTransportGroup'

2 years ago

Let this mod use the 'SchallTransportGroup' subgroup!

I made this locally just adding this in the top of "heli_item.lua":


local subgroup_helicopter = "transport"
if mods["SchallTransportGroup"] then
data:extend({
{
type = "item-subgroup",
name = "helicopters",
group = "transport",
order = "d-5"
}
})

subgroup_helicopter = "helicopters"
end


And use 'subgroup_helicopter' on the subgroups of all aircrafts!

Thanks.

2 years ago

I changed the equipment too (on "remote_items.lua"):

I just changed the subgroup of 'heli_remote_equipment':

  • subgroup = mods.SchallCircuitGroup and 'vehicle-equipment' or 'equipment',

Thanks.

New response