diff --git a/src/p_mobj.c b/src/p_mobj.c
index 5a508e008e72382f178ae8f0135e99a907399c07..08b84f3658677d3545c5e158b90317633e635b9f 100644
--- a/src/p_mobj.c
+++ b/src/p_mobj.c
@@ -7005,14 +7005,6 @@ static void P_MobjScaleThink(mobj_t *mobj)
 		mobj->z -= (mobj->height - oldheight)/2;
 	else if (correctionType == 2)
 		mobj->z -= mobj->height - oldheight;
-
-	if (mobj->scale == mobj->destscale)
-		/// \todo Lua hook for "reached destscale"?
-		switch (mobj->type)
-		{
-		default:
-			break;
-		}
 }
 
 static void P_MaceSceneryThink(mobj_t *mobj)