From fc7269cc8c0e50015e16c28569028be45787ebd8 Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Mon, 1 Jul 2024 09:28:05 +0100 Subject: [PATCH] remove fallback node from inventory and update version --- api.lua | 2 +- init.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api.lua b/api.lua index be793f9..56e87d1 100644 --- a/api.lua +++ b/api.lua @@ -21,7 +21,7 @@ end -- Global mobs = { mod = "redo", - version = "20240629", + version = "20240701", translate = S, invis = minetest.global_exists("invisibility") and invisibility or {}, node_snow = has(minetest.registered_aliases["mapgen_snow"]) diff --git a/init.lua b/init.lua index ee23b60..70c32a1 100644 --- a/init.lua +++ b/init.lua @@ -12,7 +12,7 @@ minetest.register_node("mobs:fallback_node", { description = "Fallback Node", tiles = {"mobs_fallback.png"}, is_ground_content = false, - groups = {handy = 1, crumbly = 3}, + groups = {handy = 1, crumbly = 3, not_in_creative_inventory = 1}, drop = "" })