1
0
mirror of https://github.com/mt-mods/signs_lib.git synced 2024-09-27 14:30:20 +02:00

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

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)