Change symbol thing type to 4094

This commit is contained in:
Lach 2023-07-11 21:51:29 +10:00
parent 4ad383721d
commit 77750438ef
2 changed files with 2 additions and 2 deletions

View file

@ -26291,7 +26291,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
}, },
{ // MT_SYMBOL { // MT_SYMBOL
4095, // doomednum 4094, // doomednum
S_SYMBOL_0, // spawnstate S_SYMBOL_0, // spawnstate
1000, // spawnhealth 1000, // spawnhealth
S_NULL, // seestate S_NULL, // seestate

View file

@ -7202,7 +7202,7 @@ static void P_ConvertBinaryThingTypes(void)
case CEILING_SLOPE_THING: case CEILING_SLOPE_THING:
mapthings[i].args[0] = mapthings[i].extrainfo; mapthings[i].args[0] = mapthings[i].extrainfo;
break; break;
case 4095: // MT_SYMBOL case 4094: // MT_SYMBOL
mapthings[i].args[0] = mapthings[i].extrainfo; mapthings[i].args[0] = mapthings[i].extrainfo;
if (mapthings[i].options & MTF_OBJECTSPECIAL) if (mapthings[i].options & MTF_OBJECTSPECIAL)
{ {