update use_texture_alpha properties

This commit is contained in:
FaceDeer
2021-03-13 02:21:13 -07:00
parent 9a53e49fa8
commit 0acb3ab09b
14 changed files with 40 additions and 40 deletions

View File

@ -39,7 +39,7 @@ minetest.register_node("df_primordial_items:mushroom_gills", {
climbable = true,
is_ground_content = false,
sounds = df_primordial_items.sounds.leaves,
use_texture_alpha = true,
use_texture_alpha = "clip",
sunlight_propagates = true,
drop = {
max_items = 1,
@ -69,10 +69,11 @@ minetest.register_node("df_primordial_items:mushroom_gills_glowing", {
drawtype = "plantlike",
waving = 2,
walkable = false,
climbable = true,
is_ground_content = false,
light_source = 6,
sounds = df_primordial_items.sounds.leaves,
use_texture_alpha = true,
use_texture_alpha = "clip",
sunlight_propagates = true,
drop = {
max_items = 1,
@ -703,7 +704,7 @@ minetest.register_node("df_primordial_items:mush_sapling", {
walkable = false,
is_ground_content = false,
sounds = df_primordial_items.sounds.leaves,
use_texture_alpha = true,
use_texture_alpha = "clip",
sunlight_propagates = true,
on_construct = function(pos)
if minetest.get_item_group(minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name, "soil") == 0 then