(I'm porting this mod: https://mods.factorio.com/mod/petcat)
There are 2 problems I am having:
- It looks like manual-mode items cannot have products. When trying to launch it, the launch button is greyed-out, with the tooltip stating that there is not enough room in the cargo landing pad. I've noticed this even happens to the vanilla satellite if I change its mode as well.
- I want to be able to hide the rocket launch products from the tooltip when hovering over the item. (Y'know, to not give it away)
The current item definition looks like this:
Code: Select all
local cat_item = {
type = "item",
name = "cat",
icon = "__petcat__/graphics/cat_icon.png",
icon_size = 128,
stackable = false,
stack_size = 1,
flags = {"not-stackable"},
place_result = "cat",
subgroup="defensive-structure",
rocket_launch_products = {{type="module", name="mouse", amount=1}},
send_to_orbit_mode = "manual"
}