Is ground content (#3)

* banners aren't ground content

* Update factions.lua
This commit is contained in:
Luke aka SwissalpS 2024-02-28 12:06:41 +01:00 committed by GitHub
parent 7605ffabfe
commit cc36ed67b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -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",

View File

@ -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",