mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 19:01:50 +00:00
SPB special stage experiment
If you smuggle an SPB to after the death of the UFO Catcher, spawn a single, free-on-straightways manta ring before it blows up. Testing shows that you can get hit by the SPB's explosion only if you use the free manta ring just before a sneaker panel... but also Sal thinks it's cool and I think it adds depth
This commit is contained in:
parent
e45282bdff
commit
7482e11992
1 changed files with 7 additions and 0 deletions
|
|
@ -865,6 +865,13 @@ void Obj_SPBThink(mobj_t *spb)
|
||||||
|
|
||||||
if ((bestMobj = K_GetPossibleSpecialTarget()) == NULL)
|
if ((bestMobj = K_GetPossibleSpecialTarget()) == NULL)
|
||||||
{
|
{
|
||||||
|
// experimental - I think it's interesting IMO
|
||||||
|
Obj_MantaRingCreate(
|
||||||
|
spb,
|
||||||
|
spb_owner(spb),
|
||||||
|
NULL
|
||||||
|
);
|
||||||
|
|
||||||
spb->fuse = TICRATE/3;
|
spb->fuse = TICRATE/3;
|
||||||
spb_nothink(spb) = spb->fuse + 2;
|
spb_nothink(spb) = spb->fuse + 2;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue