summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Mobs/Silverfish.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/Silverfish.cpp b/src/Mobs/Silverfish.cpp
index 43686344b..a11256076 100644
--- a/src/Mobs/Silverfish.cpp
+++ b/src/Mobs/Silverfish.cpp
@@ -59,7 +59,7 @@ bool cSilverfish::DoTakeDamage(TakeDamageInfo &a_TDI)
// Search the faces of an increasingly large cube (so the positions closest get looked at first)
// of min 3, max 10, for infested blocks and spawn additional reinforcements:
- for (int CubeSideLength = 3; CubeSideLength <= 10; CubeSideLength++)
+ for (int CubeSideLength = 3; CubeSideLength <= 10; CubeSideLength += 2)
{
const int HalfSide = CubeSideLength / 2;