mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-13 06:13:18 +00:00
Fix map thing type check in OP_CreateNewMapThing
This commit is contained in:
parent
f86a7382a6
commit
8ca2b44ccd
1 changed files with 1 additions and 1 deletions
|
@ -1110,7 +1110,7 @@ static mapthing_t *OP_CreateNewMapThing(player_t *player, UINT16 type, boolean c
|
||||||
mt->pitch = mt->roll = 0;
|
mt->pitch = mt->roll = 0;
|
||||||
|
|
||||||
// Ignore offsets
|
// Ignore offsets
|
||||||
if (mt->type == MT_EMBLEM)
|
if (mt->type == mobjinfo[MT_EMBLEM].doomednum)
|
||||||
mt->args[1] = 1;
|
mt->args[1] = 1;
|
||||||
else
|
else
|
||||||
mt->args[0] = 1;
|
mt->args[0] = 1;
|
||||||
|
|
Loading…
Reference in a new issue