From cc36ed67b5244473eb8a8edee36b2774c73b4830 Mon Sep 17 00:00:00 2001 From: Luke aka SwissalpS Date: Wed, 28 Feb 2024 12:06:41 +0100 Subject: [PATCH] Is ground content (#3) * banners aren't ground content * Update factions.lua --- factions.lua | 2 ++ nodes.lua | 2 ++ 2 files changed, 4 insertions(+) diff --git a/factions.lua b/factions.lua index e06180d..9a327ae 100644 --- a/factions.lua +++ b/factions.lua @@ -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", diff --git a/nodes.lua b/nodes.lua index ee5dbcc..3b869d4 100644 --- a/nodes.lua +++ b/nodes.lua @@ -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",