mirror of
https://github.com/cheapie/plasticbox.git
synced 2024-12-04 13:13:46 +01:00
Removed stairs/slabs/etc. from creative inventory (use circular saw)
This commit is contained in:
parent
c29e55c750
commit
a556247d9a
16
init.lua
16
init.lua
@ -216,7 +216,7 @@ if minetest.get_modpath("moreblocks") then
|
||||
"plasticbox",
|
||||
"plasticbox",
|
||||
"plasticbox:plasticbox",
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 },
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
||||
{ "plasticbox.png",
|
||||
},
|
||||
"Plastic",
|
||||
@ -227,7 +227,7 @@ if minetest.get_modpath("moreblocks") then
|
||||
"plasticbox",
|
||||
"plasticbox",
|
||||
"plasticbox:plasticbox",
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 },
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
||||
{ "plasticbox.png",
|
||||
},
|
||||
"Plastic",
|
||||
@ -239,7 +239,7 @@ if minetest.get_modpath("moreblocks") then
|
||||
"plasticbox",
|
||||
"plasticbox",
|
||||
"plasticbox:plasticbox",
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 },
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
||||
{ "plasticbox.png",
|
||||
},
|
||||
"Plastic",
|
||||
@ -251,7 +251,7 @@ if minetest.get_modpath("moreblocks") then
|
||||
"plasticbox",
|
||||
"plasticbox",
|
||||
"plasticbox:plasticbox",
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 },
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
||||
{ "plasticbox.png",
|
||||
},
|
||||
"Plastic",
|
||||
@ -273,7 +273,7 @@ for i in ipairs(plasticbox.colorlist) do
|
||||
"plasticbox",
|
||||
"plasticbox_"..colorname,
|
||||
"plasticbox:plasticbox_"..colorname,
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 },
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
||||
{ "plasticbox_"..colorname..".png",
|
||||
},
|
||||
desc,
|
||||
@ -284,7 +284,7 @@ for i in ipairs(plasticbox.colorlist) do
|
||||
"plasticbox",
|
||||
"plasticbox_"..colorname,
|
||||
"plasticbox:plasticbox_"..colorname,
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 },
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
||||
{ "plasticbox_"..colorname..".png",
|
||||
},
|
||||
desc,
|
||||
@ -296,7 +296,7 @@ for i in ipairs(plasticbox.colorlist) do
|
||||
"plasticbox",
|
||||
"plasticbox_"..colorname,
|
||||
"plasticbox:plasticbox_"..colorname,
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 },
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
||||
{ "plasticbox_"..colorname..".png",
|
||||
},
|
||||
desc,
|
||||
@ -308,7 +308,7 @@ for i in ipairs(plasticbox.colorlist) do
|
||||
"plasticbox",
|
||||
"plasticbox_"..colorname,
|
||||
"plasticbox:plasticbox_"..colorname,
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 },
|
||||
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
||||
{ "plasticbox_"..colorname..".png",
|
||||
},
|
||||
desc,
|
||||
|
Loading…
Reference in New Issue
Block a user