diff options
author | Calinou <calinou@opmbx.org> | 2014-04-30 19:38:52 +0200 |
---|---|---|
committer | Calinou <calinou@opmbx.org> | 2014-04-30 19:38:52 +0200 |
commit | 5c1e6fcf0e3adfd41a38d49a1d3c3cccc5c32a8b (patch) | |
tree | 4d0224c9709f05b4d25949182c05759897923d25 /nodes.lua | |
parent | 4656229594425ac846927ad11a157fdbeb151a37 (diff) |
Compressed textures, glass uses glasslike_framed drawtype, new texture for glow glass, added texture for trap glow glass and trap super glow glass.
Diffstat (limited to 'nodes.lua')
-rw-r--r-- | nodes.lua | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -221,7 +221,7 @@ local nodes = { }, ["glow_glass"] = { description = S("Glow Glass"), - drawtype = "glasslike", + drawtype = "glasslike_framed", paramtype = "light", sunlight_propagates = true, light_source = 11, @@ -230,8 +230,7 @@ local nodes = { }, ["trap_glow_glass"] = { description = S("Trap Glow Glass"), - drawtype = "glasslike", - tiles = {"moreblocks_glow_glass.png"}, + drawtype = "glasslike_framed", paramtype = "light", sunlight_propagates = true, light_source = 11, @@ -242,7 +241,7 @@ local nodes = { }, ["super_glow_glass"] = { description = S("Super Glow Glass"), - drawtype = "glasslike", + drawtype = "glasslike_framed", paramtype = "light", sunlight_propagates = true, light_source = 15, @@ -251,8 +250,7 @@ local nodes = { }, ["trap_super_glow_glass"] = { description = S("Trap Super Glow Glass"), - drawtype = "glasslike", - tiles = {"moreblocks_super_glow_glass.png"}, + drawtype = "glasslike_framed", paramtype = "light", sunlight_propagates = true, light_source = 15, |