diff options
-rw-r--r-- | nodes.lua | 24 | ||||
-rw-r--r-- | textures/moreblocks_clean_glass_detail.png | bin | 0 -> 96 bytes | |||
-rw-r--r-- | textures/moreblocks_coal_glass_detail.png | bin | 0 -> 159 bytes | |||
-rw-r--r-- | textures/moreblocks_glow_glass_detail.png | bin | 0 -> 161 bytes | |||
-rw-r--r-- | textures/moreblocks_iron_glass_detail.png | bin | 0 -> 163 bytes | |||
-rw-r--r-- | textures/moreblocks_super_glow_glass_detail.png | bin | 0 -> 156 bytes |
6 files changed, 16 insertions, 8 deletions
@@ -136,7 +136,8 @@ local nodes = { }, ["iron_glass"] = { description = S("Iron Glass"), - drawtype = "glasslike_framed", + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_iron_glass.png", "moreblocks_iron_glass_detail.png"}, paramtype = "light", sunlight_propagates = true, groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, @@ -144,7 +145,8 @@ local nodes = { }, ["coal_glass"] = { description = S("Coal Glass"), - drawtype = "glasslike_framed", + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_coal_glass.png", "moreblocks_coal_glass_detail.png"}, paramtype = "light", sunlight_propagates = true, groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, @@ -152,7 +154,8 @@ local nodes = { }, ["clean_glass"] = { description = S("Clean Glass"), - drawtype = "glasslike_framed", + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_clean_glass.png", "moreblocks_clean_glass_detail.png"}, paramtype = "light", sunlight_propagates = true, groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, @@ -223,7 +226,8 @@ local nodes = { }, ["trap_glass"] = { description = S("Trap Glass"), - drawtype = "glasslike_framed", + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_trap_glass.png", "default_glass_detail.png"}, paramtype = "light", sunlight_propagates = true, walkable = false, @@ -262,7 +266,8 @@ local nodes = { }, ["glow_glass"] = { description = S("Glow Glass"), - drawtype = "glasslike_framed", + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_glow_glass.png", "moreblocks_glow_glass_detail.png"}, paramtype = "light", sunlight_propagates = true, light_source = 11, @@ -271,7 +276,8 @@ local nodes = { }, ["trap_glow_glass"] = { description = S("Trap Glow Glass"), - drawtype = "glasslike_framed", + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_trap_glass.png", "moreblocks_glow_glass_detail.png"}, paramtype = "light", sunlight_propagates = true, light_source = 11, @@ -282,7 +288,8 @@ local nodes = { }, ["super_glow_glass"] = { description = S("Super Glow Glass"), - drawtype = "glasslike_framed", + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_super_glow_glass.png", "moreblocks_super_glow_glass_detail.png"}, paramtype = "light", sunlight_propagates = true, light_source = 15, @@ -291,7 +298,8 @@ local nodes = { }, ["trap_super_glow_glass"] = { description = S("Trap Super Glow Glass"), - drawtype = "glasslike_framed", + drawtype = "glasslike_framed_optional", + tiles = {"moreblocks_trap_super_glow_glass.png", "moreblocks_super_glow_glass_detail.png"}, paramtype = "light", sunlight_propagates = true, light_source = 15, diff --git a/textures/moreblocks_clean_glass_detail.png b/textures/moreblocks_clean_glass_detail.png Binary files differnew file mode 100644 index 0000000..71414e8 --- /dev/null +++ b/textures/moreblocks_clean_glass_detail.png diff --git a/textures/moreblocks_coal_glass_detail.png b/textures/moreblocks_coal_glass_detail.png Binary files differnew file mode 100644 index 0000000..5ea081f --- /dev/null +++ b/textures/moreblocks_coal_glass_detail.png diff --git a/textures/moreblocks_glow_glass_detail.png b/textures/moreblocks_glow_glass_detail.png Binary files differnew file mode 100644 index 0000000..ea67bc3 --- /dev/null +++ b/textures/moreblocks_glow_glass_detail.png diff --git a/textures/moreblocks_iron_glass_detail.png b/textures/moreblocks_iron_glass_detail.png Binary files differnew file mode 100644 index 0000000..2b8fc12 --- /dev/null +++ b/textures/moreblocks_iron_glass_detail.png diff --git a/textures/moreblocks_super_glow_glass_detail.png b/textures/moreblocks_super_glow_glass_detail.png Binary files differnew file mode 100644 index 0000000..e321a5c --- /dev/null +++ b/textures/moreblocks_super_glow_glass_detail.png |