Add missing mcl_ prefix to fields

This commit is contained in:
Elias Åström 2024-11-03 18:32:50 +01:00 committed by cora
parent d90ce75a0c
commit 82a37ee4f7

View File

@ -90,8 +90,8 @@ end
for _, name in pairs({ "mcl_redstone_torch:redstone_torch_on", "mcl_redstone_torch:redstone_torch_off" }) do
minetest.override_item(name, {
_redstone_torch_on = "mcl_redstone_torch:redstone_torch_on",
_redstone_torch_off = "mcl_redstone_torch:redstone_torch_off",
_mcl_redstone_torch_on = "mcl_redstone_torch:redstone_torch_on",
_mcl_redstone_torch_off = "mcl_redstone_torch:redstone_torch_off",
})
end