mirror of
https://github.com/pandorabox-io/banners.git
synced 2024-11-12 22:00:17 +01:00
Is ground content (#3)
* banners aren't ground content * Update factions.lua
This commit is contained in:
parent
7605ffabfe
commit
cc36ed67b5
|
@ -147,6 +147,7 @@ minetest.register_node("banners:power_banner", {
|
|||
tiles = {"gold_support.png"},
|
||||
description = "Power Banner",
|
||||
groups = {cracky=3},
|
||||
is_ground_content = false,
|
||||
diggable = true,
|
||||
stack_max = 1,
|
||||
paramtype = "light",
|
||||
|
@ -179,6 +180,7 @@ minetest.register_node("banners:death_banner", {
|
|||
tiles = {"death_uv.png"},
|
||||
description = "Death Banner",
|
||||
groups = {cracky=3},
|
||||
is_ground_content = false,
|
||||
diggable = true,
|
||||
stack_max = 1,
|
||||
paramtype = "light",
|
||||
|
|
|
@ -6,6 +6,7 @@ minetest.register_node("banners:wooden_banner",
|
|||
tiles = {"banner_support.png"},
|
||||
description = "Wooden banner",
|
||||
groups = {choppy=2, dig_immediate=2},
|
||||
is_ground_content = false,
|
||||
diggable = true,
|
||||
stack_max = 1,
|
||||
paramtype="light",
|
||||
|
@ -33,6 +34,7 @@ minetest.register_node("banners:steel_banner",
|
|||
tiles = {"steel_support.png"},
|
||||
description = "Steel banner",
|
||||
groups = {cracky=2},
|
||||
is_ground_content = false,
|
||||
diggable = true,
|
||||
stack_max = 1,
|
||||
paramtype = "light",
|
||||
|
|
Loading…
Reference in New Issue
Block a user