mirror of
https://github.com/yquake2/rogue.git
synced 2024-11-10 06:42:21 +00:00
Killtarget teamchain cleanup crash fix
This commit is contained in:
parent
325910d2fe
commit
fa063e9710
1 changed files with 8 additions and 12 deletions
|
@ -269,7 +269,6 @@ G_UseTargets(edict_t *ent, edict_t *activator)
|
|||
{
|
||||
edict_t *t;
|
||||
edict_t *master;
|
||||
qboolean done = false;
|
||||
|
||||
if (!ent || !activator)
|
||||
{
|
||||
|
@ -321,23 +320,20 @@ G_UseTargets(edict_t *ent, edict_t *activator)
|
|||
{
|
||||
/* if this entity is part of a train, cleanly remove it */
|
||||
if (t->flags & FL_TEAMSLAVE)
|
||||
{
|
||||
if (t->teammaster)
|
||||
{
|
||||
master = t->teammaster;
|
||||
|
||||
while (!done)
|
||||
while (master)
|
||||
{
|
||||
if (master->teamchain == t)
|
||||
{
|
||||
master->teamchain = t->teamchain;
|
||||
done = true;
|
||||
break;
|
||||
}
|
||||
|
||||
master = master->teamchain;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
G_FreeEdict(t);
|
||||
|
||||
|
|
Loading…
Reference in a new issue