As of a recent VKDoom update, Heretic and Hexen keys now have actual tags.

This commit is contained in:
Mari the Deer 2025-05-02 23:48:45 +02:00
commit c192c22b9b
3 changed files with 17 additions and 16 deletions

View file

@ -160,21 +160,7 @@ extend Class SWWMHandler
else if ( a is 'RedSkull' ) a.SetTag("$T_REDSKULL");
else if ( a is 'BlueSkull' ) a.SetTag("$T_BLUESKULL");
else if ( a is 'YellowSkull' ) a.SetTag("$T_YELLOWSKULL");
else if ( a is 'KeyYellow' ) a.SetTag("$T_KEYYELLOW");
else if ( a is 'KeyGreen' ) a.SetTag("$T_KEYGREEN");
else if ( a is 'KeyBlue' ) a.SetTag("$T_KEYBLUE");
else if ( a.GetClassName() == 'KeyRed' ) a.SetTag("$T_KEYRED");
else if ( a is 'KeySteel' ) a.SetTag("$T_KEYSTEEL");
else if ( a is 'KeyCave' ) a.SetTag("$T_KEYCAVE");
else if ( a is 'KeyAxe' ) a.SetTag("$T_KEYAXE");
else if ( a is 'KeyFire' ) a.SetTag("$T_KEYFIRE");
else if ( a is 'KeyEmerald' ) a.SetTag("$T_KEYEMERALD");
else if ( a is 'KeyDungeon' ) a.SetTag("$T_KEYDUNGEON");
else if ( a is 'KeySilver' ) a.SetTag("$T_KEYSILVER");
else if ( a is 'KeyRusted' ) a.SetTag("$T_KEYRUSTED");
else if ( a is 'KeyHorn' ) a.SetTag("$T_KEYHORN");
else if ( a is 'KeySwamp' ) a.SetTag("$T_KEYSWAMP");
else if ( a is 'KeyCastle' ) a.SetTag("$T_KEYCASTLE");
}
// tempfix keys have no tags