mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-06-28 05:50:17 +02:00
Switch from tile_images to tiles = {...}
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
-- MESELAMPS
|
||||
minetest.register_node("mesecons_lamp:lamp_on", {
|
||||
drawtype = "nodebox",
|
||||
tile_images = {"jeija_meselamp_on.png"},
|
||||
tiles = {"jeija_meselamp_on.png"},
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
legacy_wallmounted = true,
|
||||
@ -26,7 +26,7 @@ minetest.register_node("mesecons_lamp:lamp_on", {
|
||||
|
||||
minetest.register_node("mesecons_lamp:lamp_off", {
|
||||
drawtype = "nodebox",
|
||||
tile_images = {"jeija_meselamp_off.png"},
|
||||
tiles = {"jeija_meselamp_off.png"},
|
||||
inventory_image = "jeija_meselamp.png",
|
||||
wield_image = "jeija_meselamp.png",
|
||||
paramtype = "light",
|
||||
|
Reference in New Issue
Block a user