This commit is contained in:
Gábriel 2023-09-08 18:53:37 +02:00 committed by GitHub
commit d89ea6238e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 3 deletions

View File

@ -249,9 +249,15 @@ minetest.register_node("cottages:anvil", {
end
minetest.after(2, function()
if( puncher ) then
if(hud1) then puncher:hud_remove(hud1); end
if(hud2) then puncher:hud_remove(hud2); end
if(hud3) then puncher:hud_remove(hud3); end
if( hud1 ) then
puncher:hud_remove(hud1);
end
if( hud2 ) then
puncher:hud_remove(hud2);
end
if( hud3 ) then
puncher:hud_remove(hud3);
end
end
end)