mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2025-06-28 12:56:01 +02:00
Is ground content (#64)
see https://github.com/pandorabox-io/pandorabox.io/issues/836
This commit is contained in:
committed by
GitHub
parent
280924c02b
commit
080551e647
@ -146,6 +146,7 @@ minetest.register_node("fake_fire:ice_fire", {
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
groups = {dig_immediate=3, not_in_creative_inventory=1, dig_generic=3, handy=1},
|
||||
is_ground_content = false,
|
||||
_mcl_hardness=0.6,
|
||||
sunlight_propagates = true,
|
||||
buildable_to = true,
|
||||
@ -188,6 +189,7 @@ minetest.register_node("fake_fire:fancy_fire", {
|
||||
paramtype2 = "facedir",
|
||||
use_texture_alpha = "clip",
|
||||
groups = {oddly_breakable_by_hand=3, flammable=0, handy=1},
|
||||
is_ground_content = false,
|
||||
_mcl_hardness=0.6,
|
||||
sunlight_propagates = true,
|
||||
light_source = 13,
|
||||
@ -234,6 +236,7 @@ minetest.register_node("fake_fire:embers", {
|
||||
},
|
||||
light_source = 9,
|
||||
groups = {crumbly=3, dig_stone=2, handy=1},
|
||||
is_ground_content = false,
|
||||
_mcl_hardness=0.6,
|
||||
paramtype = "light",
|
||||
_sound_def = {
|
||||
@ -266,6 +269,7 @@ for _, mat in ipairs(materials) do
|
||||
description = desc,
|
||||
tiles = {tex.."^chimney_top.png", tex},
|
||||
groups = {snappy=3, dig_stone=2, handy=1},
|
||||
is_ground_content = false,
|
||||
_mcl_hardness=0.6,
|
||||
paramtype = "light",
|
||||
_sound_def = {
|
||||
|
Reference in New Issue
Block a user