Skip to content

Commit

Permalink
Update init.lua
Browse files Browse the repository at this point in the history
Remove old style flat inv images
  • Loading branch information
RealBadAngel committed Apr 28, 2013
1 parent 163384f commit cc20b9b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions mesecons_lightstone/init.lua
@@ -1,7 +1,6 @@
function mesecon:lightstone_add(name, base_item, texture_off, texture_on)
minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_off", {
tiles = {texture_off},
inventory_image = minetest.inventorycube(texture_off),
groups = {cracky=2, mesecon_effector_off = 1, mesecon = 2},
description=name.." Lightstone",
sounds = default.node_sound_stone_defaults(),
Expand All @@ -13,7 +12,6 @@ function mesecon:lightstone_add(name, base_item, texture_off, texture_on)
})
minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_on", {
tiles = {texture_on},
inventory_image = minetest.inventorycube(texture_on),
groups = {cracky=2,not_in_creative_inventory=1, mesecon = 2},
drop = "node mesecons_lightstone:lightstone_" .. name .. "_off 1",
light_source = LIGHT_MAX-2,
Expand Down

0 comments on commit cc20b9b

Please sign in to comment.