fix minor bug.

This commit is contained in:
Michieal 2023-01-30 23:57:50 -05:00
parent b4eaf1c7ce
commit 03379ba0d7
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ function waxing_copper_block(pos, node, player, itemstack, convert_to)
return
end
local def = minetest.registered_nodes(node.name)
local def = minetest.registered_nodes[node.name]
if def and def._mcl_copper_waxed_variant then
node.name = def._mcl_copper_waxed_variant
@ -73,7 +73,7 @@ function scraping_copper_block(pos, node, player, itemstack, convert_to)
return
end
local def = minetest.registered_nodes(node.name)
local def = minetest.registered_nodes[node.name]
if def and def._mcl_copper_unwaxed_variant then
node.name = def._mcl_copper_unwaxed_variant