From bb8cfecfaa78631815e1b3f8e7a135b1420d0272 Mon Sep 17 00:00:00 2001 From: flux <25628292+fluxionary@users.noreply.github.com> Date: Wed, 26 Oct 2022 09:24:22 -0700 Subject: [PATCH] prevent signs entities from being destroyed --- api.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api.lua b/api.lua index 35384d0..29c9998 100644 --- a/api.lua +++ b/api.lua @@ -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)