mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-23 03:12:38 +00:00
New award rings linedef executor
This commit is contained in:
parent
c8cfc3110f
commit
6c2ef839c1
1 changed files with 15 additions and 0 deletions
15
src/p_spec.c
15
src/p_spec.c
|
@ -3916,6 +3916,21 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec)
|
|||
F_StartTextPrompt(promptnum, pagenum, mo, runpostexec ? postexectag : 0, blockcontrols, freezerealtime);
|
||||
}
|
||||
}
|
||||
case 460: // Award rings
|
||||
{
|
||||
INT16 rings = (sides[line->sidenum[0]].textureoffset>>FRACBITS);
|
||||
INT16 delay = (sides[line->sidenum[0]].rowoffset>>FRACBITS);
|
||||
if (mo && mo->player)
|
||||
{
|
||||
if (delay > 0)
|
||||
{
|
||||
if (!(leveltime % (delay*TICRATE)))
|
||||
P_GivePlayerRings(mo->player, rings);
|
||||
}
|
||||
else
|
||||
P_GivePlayerRings(mo->player, rings);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
#ifdef POLYOBJECTS
|
||||
|
|
Loading…
Reference in a new issue