mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-14 17:01:07 +00:00
Move emblem float option to args[1], since args[0] is already occupied for NiGHTS emblems
This commit is contained in:
parent
707860815b
commit
d58dad7f98
3 changed files with 8 additions and 3 deletions
|
@ -4546,7 +4546,7 @@ udmf
|
|||
sprite = "EMBMA0";
|
||||
width = 16;
|
||||
height = 30;
|
||||
arg0
|
||||
arg1
|
||||
{
|
||||
title = "Float?";
|
||||
type = 11;
|
||||
|
|
|
@ -11849,7 +11849,6 @@ fixed_t P_GetMapThingSpawnHeight(const mobjtype_t mobjtype, const mapthing_t* mt
|
|||
case MT_EMERHUNT:
|
||||
case MT_EMERALDSPAWN:
|
||||
case MT_TOKEN:
|
||||
case MT_EMBLEM:
|
||||
case MT_RING:
|
||||
case MT_REDTEAMRING:
|
||||
case MT_BLUETEAMRING:
|
||||
|
@ -11861,6 +11860,10 @@ fixed_t P_GetMapThingSpawnHeight(const mobjtype_t mobjtype, const mapthing_t* mt
|
|||
offset += mthing->args[0] ? 0 : 24*FRACUNIT;
|
||||
break;
|
||||
|
||||
case MT_EMBLEM:
|
||||
offset += mthing->args[1] ? 0 : 24 * FRACUNIT;
|
||||
break;
|
||||
|
||||
// Remaining objects.
|
||||
default:
|
||||
if (P_WeaponOrPanel(mobjtype))
|
||||
|
|
|
@ -6288,7 +6288,6 @@ static void P_ConvertBinaryThingTypes(void)
|
|||
case 312: //Emerald token
|
||||
case 320: //Emerald hunt location
|
||||
case 321: //Match chaos emerald spawn
|
||||
case 322: //Emblem
|
||||
case 330: //Bounce ring panel
|
||||
case 331: //Rail ring panel
|
||||
case 332: //Automatic ring panel
|
||||
|
@ -6301,6 +6300,9 @@ static void P_ConvertBinaryThingTypes(void)
|
|||
case 1800: //Coin
|
||||
mapthings[i].args[0] = !(mapthings[i].options & MTF_AMBUSH);
|
||||
break;
|
||||
case 322: //Emblem
|
||||
mapthings[i].args[1] = !(mapthings[i].options & MTF_AMBUSH);
|
||||
break;
|
||||
case 409: //Extra life monitor
|
||||
mapthings[i].args[2] = !(mapthings[i].options & (MTF_AMBUSH|MTF_OBJECTSPECIAL));
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue