diff options
author | Calinou <calinou@opmbx.org> | 2014-04-30 19:50:59 +0200 |
---|---|---|
committer | Calinou <calinou@opmbx.org> | 2014-04-30 19:50:59 +0200 |
commit | cd91942e21fb225f494c44a3a8be43b6bcd6e632 (patch) | |
tree | 58fea4ceb491493c5bfdf00b54705a5929ef0b5d /nodes.lua | |
parent | 5c1e6fcf0e3adfd41a38d49a1d3c3cccc5c32a8b (diff) |
Lots of crafting tweaks, slight code cleanup.
Diffstat (limited to 'nodes.lua')
-rw-r--r-- | nodes.lua | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -107,7 +107,7 @@ local nodes = { }, ["iron_glass"] = { description = S("Iron Glass"), - drawtype = "glasslike", + drawtype = "glasslike_framed", paramtype = "light", sunlight_propagates = true, groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3}, @@ -115,7 +115,7 @@ local nodes = { }, ["coal_glass"] = { description = S("Coal Glass"), - drawtype = "glasslike", + drawtype = "glasslike_framed", paramtype = "light", sunlight_propagates = true, groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3}, @@ -123,7 +123,7 @@ local nodes = { }, ["clean_glass"] = { description = S("Clean Glass"), - drawtype = "glasslike", + drawtype = "glasslike_framed", paramtype = "light", sunlight_propagates = true, groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3}, @@ -182,7 +182,7 @@ local nodes = { }, ["trap_glass"] = { description = S("Trap Glass"), - drawtype = "glasslike", + drawtype = "glasslike_framed", paramtype = "light", sunlight_propagates = true, walkable = false, @@ -194,8 +194,8 @@ local nodes = { description = S("Jungle Wood Fence"), drawtype = "fencelike", tiles = {"moreblocks_jungle_wood.png"}, - inventory_image = "moreblocks_fence_jungle_wood.png", - wield_image = "moreblocks_fence_jungle_wood.png", + inventory_image = "default_fence_overlay.png^moreblocks_jungle_wood.png^default_fence_overlay.png^[makealpha:255,126,126", + wield_image = "default_fence_overlay.png^moreblocks_jungle_wood.png^default_fence_overlay.png^[makealpha:255,126,126", paramtype = "light", selection_box = { type = "fixed", @@ -213,7 +213,7 @@ local nodes = { furnace_burntime = 30, }, ["all_faces_jungle_tree"] = { - description = S("All-faces Tree"), + description = S("All-faces Jungle Tree"), tiles = {"default_jungletree_top.png"}, groups = {tree=1,snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2}, sounds = sound_wood, |