Fix on_construct typo

master
Wuzzy 2022-02-20 03:15:42 +01:00
parent 8301945ec2
commit 9f46b215f1
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ function lzr_laser.full_laser_update(pos1, pos2)
for b=1, #burning_cache do
local node = minetest.get_node(burning_cache[b])
local def = minetest.registered_nodes[node.name]
if def and def.on_consruct then
if def and def.on_construct then
def.on_construct(burning_cache[b])
end
end