diff --git a/homedecor/lighting.lua b/homedecor/lighting.lua index c97c7990..75419ae2 100644 --- a/homedecor/lighting.lua +++ b/homedecor/lighting.lua @@ -161,12 +161,12 @@ homedecor.register("candle", { 'homedecor_candle_sides.png', {name="homedecor_candle_flame.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}}, }, + inventory_image = "homedecor_candle_inv.png", selection_box = tc_cbox, collision_box = tc_cbox, sunlight_propagates = true, groups = { snappy = 3 }, light_source = LIGHT_MAX-4, - sounds = default.node_sound_wood_defaults(), }) local c_cbox = { @@ -183,6 +183,7 @@ homedecor.register("candle_thin", { 'homedecor_candle_sides.png', {name="homedecor_candle_flame.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}}, }, + inventory_image = "homedecor_candle_thin_inv.png", selection_box = c_cbox, collision_box = c_cbox, sunlight_propagates = true, @@ -234,7 +235,7 @@ homedecor.register("oil_lamp", { collision_box = ol_cbox, groups = { snappy = 3 }, light_source = LIGHT_MAX-3, - sounds = default.node_sound_wood_defaults(), + sounds = default.node_sound_glass_defaults(), }) local gl_cbox = { diff --git a/homedecor/textures/homedecor_candle_inv.png b/homedecor/textures/homedecor_candle_inv.png new file mode 100644 index 00000000..f1709ca0 Binary files /dev/null and b/homedecor/textures/homedecor_candle_inv.png differ diff --git a/homedecor/textures/homedecor_candle_thin_inv.png b/homedecor/textures/homedecor_candle_thin_inv.png new file mode 100644 index 00000000..2a894464 Binary files /dev/null and b/homedecor/textures/homedecor_candle_thin_inv.png differ