From a8ef9d14376fccb4b4b595d52fc9f9c7b5538043 Mon Sep 17 00:00:00 2001 From: Debucquoy Anthony tonitch Date: Sat, 7 May 2022 01:33:23 +0200 Subject: Avoid spawn of silverfish when exploded by tnt (#5420) --- src/Blocks/BlockInfested.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Blocks/BlockInfested.h b/src/Blocks/BlockInfested.h index 4fcb5c19e..03977daad 100644 --- a/src/Blocks/BlockInfested.h +++ b/src/Blocks/BlockInfested.h @@ -73,7 +73,7 @@ private: return; } } - if (a_Digger->IsMob()) + if (a_Digger->IsMob() || a_Digger->IsTNT()) { return; } -- cgit v1.2.3