diff options
author | Anthony Zhang <azhang9@gmail.com> | 2012-02-09 22:08:49 -0500 |
---|---|---|
committer | Anthony Zhang <azhang9@gmail.com> | 2012-02-09 22:08:49 -0500 |
commit | e94941931d37d8be5d4fcc982ab5dcc21ad978f9 (patch) | |
tree | 9bdbea6ff5b4dedb57c943fab1df4006ab8d8ee8 /jeija/init.lua | |
parent | f54166af45bf270cd671b3cda3cf693a3865da77 (diff) |
Wield images for raillike nodes, remove inventory images for nodes that never appear in the inventory.
Diffstat (limited to 'jeija/init.lua')
-rw-r--r-- | jeija/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jeija/init.lua b/jeija/init.lua index 34c20c6..e2d658f 100644 --- a/jeija/init.lua +++ b/jeija/init.lua @@ -82,6 +82,7 @@ minetest.register_node("jeija:mesecon_off", { drawtype = "raillike", tile_images = {"jeija_mesecon_off.png", "jeija_mesecon_curved_off.png", "jeija_mesecon_t_junction_off.png", "jeija_mesecon_crossing_off.png"}, inventory_image = "jeija_mesecon_off.png", + wield_image = "jeija_mesecon_off.png", paramtype = "light", is_ground_content = true, walkable = false, @@ -95,7 +96,6 @@ minetest.register_node("jeija:mesecon_off", { minetest.register_node("jeija:mesecon_on", { drawtype = "raillike", tile_images = {"jeija_mesecon_on.png", "jeija_mesecon_curved_on.png", "jeija_mesecon_t_junction_on.png", "jeija_mesecon_crossing_on.png"}, - inventory_image = "jeija_mesecon_on.png", paramtype = "light", is_ground_content = true, walkable = false, @@ -105,7 +105,6 @@ minetest.register_node("jeija:mesecon_on", { material = minetest.digprop_constanttime(0.1), drop = '"jeija:mesecon_off" 1', light_source = LIGHT_MAX-11, - description="Mesecons", }) minetest.register_craft({ @@ -666,6 +665,7 @@ minetest.register_node("jeija:solar_panel", { drawtype = "raillike", tile_images = {"jeija_solar_panel.png"}, inventory_image = "jeija_solar_panel.png", + wield_image = "jeija_solar_panel.png", paramtype = "light", walkable = false, is_ground_content = true, |