1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-06-28 12:56:01 +02:00

fix all or edge cases for https://github.com/mt-mods/homedecor_modpack/issues/49 not caught by the last commit

This commit is contained in:
unknown
2022-11-30 17:48:28 -05:00
parent 0384943a0a
commit 55bbd478d9
17 changed files with 111 additions and 49 deletions

View File

@ -144,7 +144,8 @@ minetest.register_node("fake_fire:ice_fire", {
drawtype = "plantlike",
paramtype = "light",
paramtype2 = "facedir",
groups = {dig_immediate=3, not_in_creative_inventory=1, dig_generic=3},
groups = {dig_immediate=3, not_in_creative_inventory=1, dig_generic=3, handy=1},
_mcl_hardness=0.6,
sunlight_propagates = true,
buildable_to = true,
walkable = false,
@ -184,7 +185,8 @@ minetest.register_node("fake_fire:fancy_fire", {
paramtype = "light",
paramtype2 = "facedir",
use_texture_alpha = "clip",
groups = {oddly_breakable_by_hand=3, flammable=0},
groups = {oddly_breakable_by_hand=3, flammable=0, handy=1},
_mcl_hardness=0.6,
sunlight_propagates = true,
light_source = 13,
walkable = false,
@ -228,7 +230,8 @@ minetest.register_node("fake_fire:embers", {
aspect_w=16, aspect_h=16, length=2}},
},
light_source = 9,
groups = {crumbly=3, dig_stone=2},
groups = {crumbly=3, dig_stone=2, handy=1},
_mcl_hardness=0.6,
paramtype = "light",
_sound_def = {
key = "node_sound_dirt_defaults",
@ -259,7 +262,8 @@ for _, mat in ipairs(materials) do
minetest.register_node("fake_fire:chimney_top_"..name, {
description = desc,
tiles = {tex.."^chimney_top.png", tex},
groups = {snappy=3, dig_stone=2},
groups = {snappy=3, dig_stone=2, handy=1},
_mcl_hardness=0.6,
paramtype = "light",
_sound_def = {
key = "node_sound_stone_defaults",