diff --git a/language.version b/language.version index cc201b404..854732da9 100644 --- a/language.version +++ b/language.version @@ -1,3 +1,3 @@ [default] -SWWM_MODVER="\chSWWM \czGZ\c- \cw0.9.11b-pre r303 \cu(Mon 22 Feb 20:16:26 CET 2021)\c-"; -SWWM_SHORTVER="\cw0.9.11b-pre r303 \cu(2021-02-22 20:16:26)\c-"; +SWWM_MODVER="\chSWWM \czGZ\c- \cw0.9.11b-pre r303 \cu(Mon 22 Feb 21:51:49 CET 2021)\c-"; +SWWM_SHORTVER="\cw0.9.11b-pre r303 \cu(2021-02-22 21:51:49)\c-"; diff --git a/zscript/swwm_hud.zsc b/zscript/swwm_hud.zsc index cad587e02..975d5ec71 100644 --- a/zscript/swwm_hud.zsc +++ b/zscript/swwm_hud.zsc @@ -1049,7 +1049,7 @@ Class SWWMStatusBar : BaseStatusBar radius = t.target.radius; if ( t.isitem ) { - if ( ((t.target is 'Chancebox') && (t.target.CurState == t.target.SpawnState)) || (t.target is 'SWWMCollectible') ) col = "Purple"; + if ( ((t.target is 'Chancebox') && (t.target.CurState == t.target.SpawnState)) || (t.target is 'SWWMCollectible') || (t.target is 'GoldShell') ) col = "Purple"; else if ( t.target.bCOUNTITEM || (t.target is 'Key') ) col = am_thingcolor_citem; else col = am_thingcolor_item; isitem = true; diff --git a/zscript/swwm_thinkers.zsc b/zscript/swwm_thinkers.zsc index 671e95160..6d9fffc44 100644 --- a/zscript/swwm_thinkers.zsc +++ b/zscript/swwm_thinkers.zsc @@ -775,7 +775,7 @@ Class SWWMItemSense : Thinker i.ChangeStatNum(STAT_USER); i.item = item; i.scoreitem = (item is 'Key')||item.bCOUNTITEM; - i.vipitem = (item is 'Chancebox')||(item is 'SWWMCollectible'); + i.vipitem = (item is 'Chancebox')||(item is 'SWWMCollectible')||(item is 'GoldShell'); i.parent = parent; i.updated = level.maptime+35; i.UpdateTag(); @@ -1376,7 +1376,7 @@ Class SWWMSimpleTracker : Thinker countkill = target.bCOUNTKILL; isitem = (target is 'Inventory'); countitem = (target is 'Key')||target.bCOUNTITEM; - vipitem = ((target is 'Chancebox')&&(target.CurState==target.SpawnState))||(target is 'SWWMCollectible'); + vipitem = ((target is 'Chancebox')&&(target.CurState==target.SpawnState))||(target is 'SWWMCollectible')||(target is 'GoldShell'); lastupdate = level.maptime; if ( isitem ) {