Fix key tag fix for Heretic.
This commit is contained in:
parent
4171c7c7c7
commit
74e63b7d0b
2 changed files with 6 additions and 6 deletions
|
|
@ -173,10 +173,10 @@ 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_YELLOWKEY");
|
||||
else if ( a is 'KeyGreen' ) a.SetTag("$T_GREENKEY");
|
||||
else if ( a is 'KeyBlue' ) a.SetTag("$T_BLUEKEY");
|
||||
else if ( a.GetClassName() == 'KeyRed' ) a.SetTag("$T_REDKEY");
|
||||
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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue