diff --git a/src/p_mobj.c b/src/p_mobj.c
index e6effb1fc6a0a54329f7a7d47b93ba270eca4864..69eec0a2a5ff4f8c357742626ecc1c5af6d5a41e 100644
--- a/src/p_mobj.c
+++ b/src/p_mobj.c
@@ -14285,6 +14285,9 @@ static void P_SpawnItemRow(mapthing_t *mthing, mobjtype_t *itemtypes, UINT8 numi
 		mobj_t *loopcenter = Obj_FindLoopCenter(mthing->tid);
 
 		// Spawn the anchor at the middle point of the line
+		CONS_Printf("fineangle: %d\n", fineangle);
+		CONS_Printf("FINESINE(fineangle): %d\n", FINESINE(fineangle));
+		
 		loopanchor = P_SpawnMobjFromMapThing(&dummything,
 				x + FixedMul(length, FINECOSINE(fineangle)),
 				y + FixedMul(length, FINESINE(fineangle)),