mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix the RA only linedef
I forgot some stuff.
This commit is contained in:
parent
aabd65cbff
commit
7fa7543358
1 changed files with 2 additions and 2 deletions
|
|
@ -1982,6 +1982,7 @@ void P_LinedefExecute(INT16 tag, mobj_t *actor, sector_t *caller)
|
|||
if (lines[masterline].special == 313
|
||||
|| lines[masterline].special == 399
|
||||
|| lines[masterline].special == 328
|
||||
|| lines[masterline].special == 323
|
||||
// Each-time executors handle themselves, too
|
||||
|| lines[masterline].special == 301 // Each time
|
||||
|| lines[masterline].special == 306 // Character ability - Each time
|
||||
|
|
@ -5659,7 +5660,7 @@ static void P_RunLevelLoadExecutors(void)
|
|||
|
||||
for (i = 0; i < numlines; i++)
|
||||
{
|
||||
if (lines[i].special == 399 || lines[i].special == 328)
|
||||
if (lines[i].special == 399 || lines[i].special == 328 || lines[i].special == 323)
|
||||
P_RunTriggerLinedef(&lines[i], NULL, NULL);
|
||||
}
|
||||
}
|
||||
|
|
@ -6561,7 +6562,6 @@ void P_SpawnSpecials(INT32 fromnetsave)
|
|||
break;
|
||||
// Record attack only linedef exec
|
||||
case 323:
|
||||
case 324:
|
||||
if (!modeattacking)
|
||||
lines[i].special = 0;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue