diff --git a/language.version b/language.version index 7458e7160..bd20d7b6a 100644 --- a/language.version +++ b/language.version @@ -1,3 +1,3 @@ [default] -SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r177 \cu(Thu 14 Jul 12:23:59 CEST 2022)\c-"; -SWWM_SHORTVER="\cw1.3pre r177 \cu(2022-07-14 12:23:59)\c-"; +SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r178 \cu(Thu 14 Jul 20:39:14 CEST 2022)\c-"; +SWWM_SHORTVER="\cw1.3pre r178 \cu(2022-07-14 20:39:14)\c-"; diff --git a/zscript/handler/swwm_handler_worldthings.zsc b/zscript/handler/swwm_handler_worldthings.zsc index 4be0de580..ab73b97ae 100644 --- a/zscript/handler/swwm_handler_worldthings.zsc +++ b/zscript/handler/swwm_handler_worldthings.zsc @@ -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");