You forgot to run the functions to create crash wreck items.

Bugs that are actually features.
Post Reply
PrestonLeeC
Burner Inserter
Burner Inserter
Posts: 9
Joined: Mon Aug 24, 2020 1:02 pm
Contact:

You forgot to run the functions to create crash wreck items.

Post by PrestonLeeC »

Original post: viewtopic.php?f=25&t=88500

The functions to create wreck items are in

Code: Select all

prototypes/item/demo-crash-site-item.lua

Code: Select all

local big_wreck_item = function(n)
  return
  {
    type = "item",
    name = "crash-site-spaceship-wreck-big-"..n,
    icon = "__base__/graphics/icons/crash-site-spaceship-wreck-big-"..n..".png",
    icon_size = 64, icon_mipmaps = 4,
    subgroup = "crash-site",
    order = "z[crash-site-spaceship]-b",
    place_result = "crash-site-spaceship-wreck-big-"..n,
    stack_size = 1,
    flags = {"hidden"}
  }
end
These functions are never run. We need these items to exist so that we can make the debris deconstructable.

Rseding91
Factorio Staff
Factorio Staff
Posts: 13226
Joined: Wed Jun 11, 2014 5:23 am
Contact:

Re: You forgot to run the functions to create crash wreck items.

Post by Rseding91 »

That is intended.
If you want to get ahold of me I'm almost always on Discord.

Post Reply

Return to “Not a bug”