prevent signs entities from being destroyed

This commit is contained in:
flux 2022-10-26 09:24:22 -07:00
parent 8aafe6608c
commit bb8cfecfaa
No known key found for this signature in database
GPG Key ID: 9333B27816848A15
1 changed files with 3 additions and 0 deletions

View File

@ -172,6 +172,9 @@ minetest.register_entity("signs_lib:text", {
self.object:remove()
end
end,
on_blast = function(self, damage)
return false, false, {}
end,
})
function signs_lib.delete_objects(pos)