Page 1 of 1

[0.15] Can't hide custom blueprint type from creation GUI

Posted: Thu May 04, 2017 3:43 pm
by mickael9
I have this custom blueprint prototype which is only meant to be used once and can only be created by mod, but albeit having flags = {"hidden"}, it still shows up in the Blueprint GUI (B).

I would also appreciate having the ability to stop the player from storing this type of blueprint in the Blueprint Library (perhaps with the same "hidden" flag or another specific one for storage)

Code: Select all

{
        type = "blueprint",
        name = "cut-and-paste-copy-blueprint",
        icon = "__cut-and-paste__/graphics/icons/copy-tool.png",
        flags = {"hidden"},
        subgroup = "tool",
        order = "c[automated-construction]-a[blueprint]",
        stack_size = 1,
        stackable = false,
        selection_color = { r = 0, g = 1, b = 0 },
        alt_selection_color = { r = 0, g = 1, b = 0 },
        selection_mode = {"cancel-deconstruct"},
        alt_selection_mode = {"cancel-deconstruct"},
        selection_cursor_box_type = "not-allowed",
        alt_selection_cursor_box_type = "not-allowed"
    },

Re: [0.15] Can't hide custom blueprint type from creation GUI

Posted: Thu May 04, 2017 3:57 pm
by daniel34
What version did you test this on?
This should have been fixed for 0.15.4: viewtopic.php?t=45474

Re: [0.15] Can't hide custom blueprint type from creation GUI

Posted: Thu May 04, 2017 4:06 pm
by mickael9
Indeed I was using 0.15.3, didn't realize I had auto updates disabled :oops:

My second point still stands but this is more of a feature request than bug report