SVN r114 (trunk)

This commit is contained in:
Christoph Oelckers 2006-05-14 14:30:13 +00:00
commit caed57baa5
38 changed files with 372 additions and 393 deletions

View file

@ -479,9 +479,9 @@ BOOL P_Move (AActor *actor)
fixed_t savedz = actor->z;
if (actor->z < tmfloorz)
actor->z += FLOATSPEED;
actor->z += actor->FloatSpeed;
else
actor->z -= FLOATSPEED;
actor->z -= actor->FloatSpeed;
// [RH] Check to make sure there's nothing in the way of the float
if (P_TestMobjZ (actor))