1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-12-16 15:15:27 +01:00

Turned stained_glass glasses into glasslike_framed_optional drawtype

This commit is contained in:
Gael-de-Sailly
2015-02-22 17:20:22 +01:00
committed by LeMagnesium
parent 92d20a7e61
commit 8286d9178d
109 changed files with 8 additions and 8 deletions

View File

@@ -142,8 +142,8 @@ for h = 1, 12 do
minetest.register_node("stained_glass:" .. (h) .. "_" .. (b) .. "_" .. (s), {
description = "Stained Glass - " .. bright .. hues .. sat,
drawtype = "glasslike",
tiles = {"stained_glass_" .. bright .. hues .. sat .. ".png"},
drawtype = "glasslike_framed_optional",
tiles = {"stained_glass_" .. bright .. hues .. sat .. ".png", "stained_glass_" .. bright .. hues .. sat .. "_detail.png"},
paramtype = "light",
sunlight_propagates = true,
use_texture_alpha = true,
@@ -185,8 +185,8 @@ for h = 1, 12 do
minetest.register_node("stained_glass:" .. (h) .. "_8_", {
description = "Stained Glass - light_" .. hues,
drawtype = "glasslike",
tiles = {"stained_glass_light_" .. hues .. ".png"},
drawtype = "glasslike_framed_optional",
tiles = {"stained_glass_light_" .. hues .. ".png", "stained_glass_light_" .. hues .. "_detail.png"},
paramtype = "light",
sunlight_propagates = true,
use_texture_alpha = true,
@@ -229,8 +229,8 @@ for h = 1, 12 do
minetest.register_node("stained_glass:" .. (h) .. "_9", {
description = "Stained Glass - pastel_" .. hues,
drawtype = "glasslike",
tiles = {"stained_glass_pastel_" .. hues .. ".png"},
drawtype = "glasslike_framed_optional",
tiles = {"stained_glass_pastel_" .. hues .. ".png", "stained_glass_pastel_" .. hues .. "_detail.png"},
paramtype = "light",
sunlight_propagates = true,
use_texture_alpha = true,
@@ -274,8 +274,8 @@ for h = 1, 12 do
minetest.register_node("stained_glass:" .. (h) .. "_91", {
description = "Stained Glass - faint_" .. hues,
drawtype = "glasslike",
tiles = {"stained_glass_faint_" .. hues .. ".png"},
drawtype = "glasslike_framed_optional",
tiles = {"stained_glass_faint_" .. hues .. ".png", "stained_glass_faint_" .. hues .. "_detail.png"},
paramtype = "light",
sunlight_propagates = true,
use_texture_alpha = true,