It's quite an easy fix, you can do it for yourself too, until it's gets done by the creator. Just open the file ...\Minetest\mods\cottages\nodes_anvil.lua in some text editor, go to line 233 as indicated in the error report and replace the
minetest.after(2, function()
if( puncher ) then
puncher:hud_remove(hud1);
puncher:hud_remove(hud2);
puncher:hud_remove(hud3);
end
end)
part there with
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
end
end)
and save the file. That's it, you're done, you can now play and use the anvil without the game crashing.
It's quite an easy fix, you can do it for yourself too, until it's gets done by the creator. Just open the file ...\Minetest\mods\cottages\nodes_anvil.lua in some text editor, go to line 233 as indicated in the error report and replace the
part there with
and save the file. That's it, you're done, you can now play and use the anvil without the game crashing.