From 9142bfbf7d13878eeb96c3802832a3763b26cb85 Mon Sep 17 00:00:00 2001 From: Lactozilla Date: Sun, 19 Jan 2025 02:29:33 -0300 Subject: [PATCH] Don't make Metal Sonic or Amy grayscale when spawning them using objectplace --- src/m_cheat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/m_cheat.c b/src/m_cheat.c index aa992621a..21ecc3312 100644 --- a/src/m_cheat.c +++ b/src/m_cheat.c @@ -1112,7 +1112,7 @@ static mapthing_t *OP_CreateNewMapThing(player_t *player, UINT16 type, boolean c // Ignore offsets if (mt->type == mobjinfo[MT_EMBLEM].doomednum) mt->args[1] = 1; - else + else if (!(mt->type == mobjinfo[MT_METALSONIC_RACE].doomednum || mt->type == mobjinfo[MT_ROSY].doomednum)) mt->args[0] = 1; return mt;