diff --git a/src/p_local.h b/src/p_local.h index e1cf49b44..d1da89cbe 100644 --- a/src/p_local.h +++ b/src/p_local.h @@ -306,6 +306,8 @@ void P_RadiusAttack(mobj_t *spot, mobj_t *source, fixed_t damagedist); fixed_t P_FloorzAtPos(fixed_t x, fixed_t y, fixed_t z, fixed_t height); boolean PIT_PushableMoved(mobj_t *thing); +void P_DoSpring(mobj_t *spring, mobj_t *object); + // // P_SETUP // diff --git a/src/p_map.c b/src/p_map.c index 25727fb3d..64f43477f 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -105,7 +105,7 @@ boolean P_TeleportMove(mobj_t *thing, fixed_t x, fixed_t y, fixed_t z) // MOVEMENT ITERATOR FUNCTIONS // ========================================================================= -static void P_DoSpring(mobj_t *spring, mobj_t *object) +void P_DoSpring(mobj_t *spring, mobj_t *object) { INT32 pflags; fixed_t offx, offy;