Migrate various thinkers to plain objects.
WIP: Gib models currently in progress. WIP: IK re-rigging of Demolitionist in progress.
This commit is contained in:
parent
65b129b716
commit
a7eda2702a
22 changed files with 192 additions and 257 deletions
|
|
@ -153,7 +153,13 @@ extend Class SWWMHandler
|
|||
if ( swwm_notrack )
|
||||
{
|
||||
int n = trackers_cnt;
|
||||
while ( trackers ) trackers.Destroy(); // wow that's simple, all in one line
|
||||
while ( trackers )
|
||||
{
|
||||
let next = trackers.next;
|
||||
trackers.Destroy(); // wow that's simple, all in one line
|
||||
trackers = next;
|
||||
}
|
||||
trackers_cnt = 0;
|
||||
Console.Printf("%d trackers removed.",n);
|
||||
}
|
||||
else
|
||||
|
|
@ -717,5 +723,4 @@ extend Class SWWMHandler
|
|||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue