This commit is contained in:
AliasAlreadyTaken 2024-11-13 08:38:21 +01:00
parent ba990d370e
commit 23defad3fb

View File

@ -34,7 +34,7 @@ function yl_googly_eyes.register_eye(name)
minetest.register_node(":yl_googly_eyes:" .. name, {
description = "Googly Eyes!",
drawtype = "nodebox",
use_texture_alpha = "blend",
use_texture_alpha = "clip",
tiles = {"yl_googly_eyes_" .. name .. ".png"},
is_ground_content = false,
inventory_image = "yl_googly_eyes_" .. name .. ".png",
@ -63,7 +63,7 @@ function yl_googly_eyes.register_eye_with_tiles(name, tiles)
minetest.register_node(":yl_googly_eyes:" .. name, {
description = "Googly Eyes!",
drawtype = "nodebox",
use_texture_alpha = "blend",
use_texture_alpha = "clip",
tiles = tiles,
is_ground_content = false,
paramtype = "light",