mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-06 01:57:14 +00:00
Ideya anchoring optimization
This commit is contained in:
parent
54cb7ddf32
commit
06bbafec2f
1 changed files with 11 additions and 11 deletions
|
@ -797,7 +797,17 @@ void P_TouchSpecialThing(mobj_t *special, mobj_t *toucher, boolean heightcheck)
|
|||
P_NightserizePlayer(player, special->health); // Transform!
|
||||
if (!spec)
|
||||
{
|
||||
if (toucher->tracer) // Move the ideya!
|
||||
if (player->exiting) // Move existing Ideyas back to player
|
||||
{
|
||||
mobj_t *hnext = special->target ? special->target : special; // goalpost
|
||||
while ((hnext = hnext->hnext))
|
||||
{
|
||||
hnext->flags &= ~MF_GRENADEBOUNCE;
|
||||
hnext->threshold = 0;
|
||||
P_SetTarget(&hnext->target, toucher);
|
||||
}
|
||||
}
|
||||
else if (toucher->tracer) // Move the Ideya to an anchor!
|
||||
{
|
||||
mobj_t *orbittarget = special->target ? special->target : special;
|
||||
mobj_t *hnext = orbittarget->hnext, *anchorpoint = NULL;
|
||||
|
@ -847,16 +857,6 @@ void P_TouchSpecialThing(mobj_t *special, mobj_t *toucher, boolean heightcheck)
|
|||
orbittarget->hnext->extravalue1 -= (72*ANG1)/orbittarget->hnext->extravalue1;
|
||||
}
|
||||
}
|
||||
if (player->exiting) // ...then move it back?
|
||||
{
|
||||
mobj_t *hnext = special->target ? special->target : special; // goalpost
|
||||
while ((hnext = hnext->hnext))
|
||||
{
|
||||
hnext->flags &= ~MF_GRENADEBOUNCE;
|
||||
hnext->threshold = 0;
|
||||
P_SetTarget(&hnext->target, toucher);
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue