mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-07-13 14:00:29 +02:00
update use_texture_alpha properties
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user