1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-18 21:50:20 +02:00

Cleaning and tweaking node params

This commit is contained in:
kilbith
2015-04-29 14:14:36 +02:00
parent 9a92d09421
commit 4dee35893a
40 changed files with 516 additions and 633 deletions

View File

@ -34,7 +34,6 @@ minetest.register_entity("homedecor:mesh_desk_fan", {
homedecor.register("desk_fan", {
description = "Desk Fan",
legacy_facedir_simple = true,
groups = {oddly_breakable_by_hand=2},
node_box = {
type = "fixed",
@ -123,7 +122,7 @@ homedecor.register("ceiling_fan", {
},
groups = { snappy = 3 },
light_source = LIGHT_MAX-1,
sounds = default.node_sound_wood_defaults(),
sounds = default.node_sound_glass_defaults(),
})
-- heating devices
@ -138,9 +137,9 @@ homedecor.register("space_heater", {
'homedecor_heater_front.png'
},
inventory_image = "homedecor_heater_inv.png",
sunlight_propagates = true,
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
sounds = default.node_sound_wood_defaults(),
node_box = {
type = "fixed",
fixed = {
@ -169,5 +168,5 @@ homedecor.register("radiator", {
groups = {snappy=3},
selection_box = r_cbox,
collision_box = r_cbox,
sounds = default.node_sound_wood_defaults(),
})