diff --git a/src/p_map.c b/src/p_map.c
index 8b8c6c07d8e2da8ed9590c4c1422af63989abf3a..6a555953e23ad5420704e2ffddaf8b2dde2678df 100644
--- a/src/p_map.c
+++ b/src/p_map.c
@@ -985,7 +985,7 @@ static boolean PIT_CheckThing(mobj_t *thing)
 				return true;
 			}
 
-			topz = thing->z - thing->scale;
+			topz = thing->z - thing->scale; // FixedMul(FRACUNIT, thing->scale), but thing->scale == FRACUNIT in base scale anyways
 
 			// block only when jumping not high enough,
 			// (dont climb max. 24units while already in air)
@@ -1028,7 +1028,7 @@ static boolean PIT_CheckThing(mobj_t *thing)
 				return true;
 			}
 
-			topz = thing->z + thing->height + thing->scale;
+			topz = thing->z + thing->height + thing->scale; // FixedMul(FRACUNIT, thing->scale), but thing->scale == FRACUNIT in base scale anyways
 
 			// block only when jumping not high enough,
 			// (dont climb max. 24units while already in air)