mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
MT_STEAM's kart behavior uses args
This commit is contained in:
parent
4896a9c843
commit
7cee4ff32a
2 changed files with 2 additions and 1 deletions
|
|
@ -500,7 +500,7 @@ static void P_DoFanAndGasJet(mobj_t *spring, mobj_t *object)
|
||||||
if (object->eflags & MFE_SPRUNG)
|
if (object->eflags & MFE_SPRUNG)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if (spring->spawnpoint && spring->spawnpoint->options & MTF_OBJECTSPECIAL)
|
if (spring->spawnpoint && spring->spawnpoint->args[1])
|
||||||
{
|
{
|
||||||
if (object->player)
|
if (object->player)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6172,6 +6172,7 @@ static void P_ConvertBinaryThingTypes(void)
|
||||||
break;
|
break;
|
||||||
case 541: //Gas jet
|
case 541: //Gas jet
|
||||||
mapthings[i].args[0] = !!(mapthings[i].options & MTF_AMBUSH);
|
mapthings[i].args[0] = !!(mapthings[i].options & MTF_AMBUSH);
|
||||||
|
mapthings[i].args[1] = !!(mapthings[i].options & MTF_OBJECTSPECIAL);
|
||||||
break;
|
break;
|
||||||
case 543: //Balloon
|
case 543: //Balloon
|
||||||
if (mapthings[i].angle > 0)
|
if (mapthings[i].angle > 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue