1
0
mirror of https://codeberg.org/tenplus1/mobs_redo.git synced 2025-01-09 01:10:20 +01:00

remove fallback node from inventory and update version

This commit is contained in:
tenplus1 2024-07-01 09:28:05 +01:00
parent fb2a247d31
commit fc7269cc8c
2 changed files with 2 additions and 2 deletions

View File

@ -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"])

View File

@ -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 = ""
})