fixed use_texture_alpha deprecation warning, set to clip, mod.conf replacement
This commit is contained in:
parent
ea9aa5a357
commit
8b798f0463
@ -1,2 +0,0 @@
|
||||
default
|
||||
doors
|
@ -1 +0,0 @@
|
||||
This mod just adds some new building blocks to Minetest.
|
24
init.lua
24
init.lua
@ -372,7 +372,7 @@ minetest.register_node("artdeco:archwin1a", {
|
||||
inventory_image = "artdeco_archwin1a_inv.png",
|
||||
paramtype = "light",
|
||||
sunlight_propogates = true,
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype2 = "facedir",
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
@ -401,7 +401,7 @@ minetest.register_node("artdeco:archwin1b", {
|
||||
inventory_image = "artdeco_archwin1b_inv.png",
|
||||
paramtype = "light",
|
||||
sunlight_propogates = true,
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype2 = "facedir",
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
@ -430,7 +430,7 @@ minetest.register_node("artdeco:archwin1c", {
|
||||
inventory_image = "artdeco_archwin1c_inv.png",
|
||||
paramtype = "light",
|
||||
sunlight_propogates = true,
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype2 = "facedir",
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
@ -459,7 +459,7 @@ minetest.register_node("artdeco:archwin2a", {
|
||||
inventory_image = "artdeco_archwin2a_inv.png",
|
||||
paramtype = "light",
|
||||
sunlight_propogates = true,
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype2 = "facedir",
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
@ -488,7 +488,7 @@ minetest.register_node("artdeco:archwin2b", {
|
||||
inventory_image = "artdeco_archwin2b_inv.png",
|
||||
paramtype = "light",
|
||||
sunlight_propogates = true,
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype2 = "facedir",
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
@ -517,7 +517,7 @@ minetest.register_node("artdeco:archwin2c", {
|
||||
inventory_image = "artdeco_archwin2c_inv.png",
|
||||
paramtype = "light",
|
||||
sunlight_propogates = true,
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype2 = "facedir",
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
@ -546,7 +546,7 @@ minetest.register_node("artdeco:wincross1a", {
|
||||
"artdeco_wincross1a_side.png", "artdeco_wincross1a_side.png",
|
||||
"artdeco_wincross1a_back.png", "artdeco_wincross1a_front.png"},
|
||||
paramtype = "light",
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype2 = "facedir",
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
@ -573,7 +573,7 @@ minetest.register_node("artdeco:wincross1b", {
|
||||
"artdeco_wincross1b_rside.png", "artdeco_wincross1b_lside.png",
|
||||
"artdeco_wincross1b_back.png", "artdeco_wincross1b_front.png"},
|
||||
paramtype = "light",
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype2 = "facedir",
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
@ -680,7 +680,7 @@ minetest.register_node("artdeco:lightwin1", {
|
||||
description = "lightwin 1",
|
||||
drawtype = "nodebox",
|
||||
tiles = {"artdeco_lightwin1.png"},
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
light_source = LIGHT_MAX-1,
|
||||
@ -700,7 +700,7 @@ minetest.register_node("artdeco:lightwin2", {
|
||||
description = "lightwin 2",
|
||||
drawtype = "nodebox",
|
||||
tiles = {"artdeco_lightwin2.png"},
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
light_source = LIGHT_MAX-1,
|
||||
@ -720,7 +720,7 @@ minetest.register_node("artdeco:lightwin3", {
|
||||
description = "lightwin 3",
|
||||
drawtype = "nodebox",
|
||||
tiles = {"artdeco_lightwin3.png"},
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
light_source = LIGHT_MAX-1,
|
||||
@ -740,7 +740,7 @@ minetest.register_node("artdeco:irongrating", {
|
||||
description = "iron grating",
|
||||
drawtype = "nodebox",
|
||||
tiles = {"artdeco_irongrating.png"},
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
|
Loading…
Reference in New Issue
Block a user