summaryrefslogtreecommitdiff
path: root/src/strife/p_mobj.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strife/p_mobj.c')
-rw-r--r--src/strife/p_mobj.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/strife/p_mobj.c b/src/strife/p_mobj.c
index a64397d8..5f7e258a 100644
--- a/src/strife/p_mobj.c
+++ b/src/strife/p_mobj.c
@@ -1156,11 +1156,9 @@ mobj_t* P_SpawnFacingMissile(mobj_t* source, mobj_t* target, mobjtype_t type)
//
// P_SpawnPlayerMissile
// Tries to aim at a nearby monster
+// villsa [STRIFE] now returns a mobj
//
-void
-P_SpawnPlayerMissile
-( mobj_t* source,
- mobjtype_t type )
+mobj_t* P_SpawnPlayerMissile(mobj_t* source, mobjtype_t type)
{
mobj_t* th;
angle_t an;
@@ -1219,6 +1217,8 @@ P_SpawnPlayerMissile
th->momz = FixedMul( th->info->speed, slope);
P_CheckMissileSpawn (th);
+
+ return th;
}
//