From f509c56e3c9fc966eb9197e9893d84bc1368e255 Mon Sep 17 00:00:00 2001
From: Wolfy <wolfy852@hotmail.com>
Date: Fri, 23 May 2014 17:58:14 -0500
Subject: [PATCH] Unstatic P_DoSpring.

---
 src/p_local.h | 2 ++
 src/p_map.c   | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/p_local.h b/src/p_local.h
index e1cf49b447..d1da89cbea 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 25727fb3dd..64f43477f6 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;
-- 
GitLab