Helpful explanatory comments to assauge MI's fears.

This commit is contained in:
toasterbabe 2016-09-22 21:15:12 +01:00
parent 0568712a5e
commit 8ad72232be
1 changed files with 2 additions and 2 deletions

View File

@ -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)