Skip to content

Commit ac9a05d

Browse files
author
VanessaE
committedApr 28, 2013
Merge pull request #98 from RealBadAngel/patch-3
Update init.lua
2 parents 163384f + cc20b9b commit ac9a05d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎mesecons_lightstone/init.lua

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
function mesecon:lightstone_add(name, base_item, texture_off, texture_on)
22
minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_off", {
33
tiles = {texture_off},
4-
inventory_image = minetest.inventorycube(texture_off),
54
groups = {cracky=2, mesecon_effector_off = 1, mesecon = 2},
65
description=name.." Lightstone",
76
sounds = default.node_sound_stone_defaults(),
@@ -13,7 +12,6 @@ function mesecon:lightstone_add(name, base_item, texture_off, texture_on)
1312
})
1413
minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_on", {
1514
tiles = {texture_on},
16-
inventory_image = minetest.inventorycube(texture_on),
1715
groups = {cracky=2,not_in_creative_inventory=1, mesecon = 2},
1816
drop = "node mesecons_lightstone:lightstone_" .. name .. "_off 1",
1917
light_source = LIGHT_MAX-2,

0 commit comments

Comments
 (0)
Please sign in to comment.