diff --git a/FuturePlans.md b/FuturePlans.md index eb36efda7..4fc45c48f 100644 --- a/FuturePlans.md +++ b/FuturePlans.md @@ -102,6 +102,7 @@ Things that I'm unsure when will be added *(or if they can be added)*. * **Customized cluster text stuff if that ever gets scriptified** * **Official Sunder support *(when the WAD is complete)*** * **Gib models *(May happen by 1.3, hopefully)*** +* **Hexen key and puzzle item models *(uncertain)*** ## Other Projects @@ -127,7 +128,7 @@ Add-ons and other related stuff. * **Kirin side mod *(Red Star of Innocence)*:** - Finally, you get to play as the precious femboy emperor - Anarukon firearms? Anarukon firearms - - Designed entirely for Hexen's funky gameplay™ + - Designed primarily for Hexen's funky gameplay™ - Watch as our boy complains about *"puzzles"* - Some unique touches to spice things up - Basically a lite version of what you could expect in **UNDEATH** diff --git a/language.version b/language.version index 2cb023beb..8c248ef4f 100644 --- a/language.version +++ b/language.version @@ -1,3 +1,3 @@ [default] -SWWM_MODVER="\cyDEMOLITIONIST \cw1.2.9 \cu(Fri 8 Apr 14:37:10 CEST 2022)\c-"; -SWWM_SHORTVER="\cw1.2.9 \cu(2022-04-08 14:37:10)\c-"; +SWWM_MODVER="\cyDEMOLITIONIST \cw1.2.9 \cu(Thu 14 Apr 11:01:34 CEST 2022)\c-"; +SWWM_SHORTVER="\cw1.2.9 \cu(2022-04-14 11:01:34)\c-"; diff --git a/zscript/kbase/swwm_kbasetab_store.zsc b/zscript/kbase/swwm_kbasetab_store.zsc index a8c560653..9b19bb3eb 100644 --- a/zscript/kbase/swwm_kbasetab_store.zsc +++ b/zscript/kbase/swwm_kbasetab_store.zsc @@ -82,10 +82,12 @@ Class DemolitionistStoreTab : DemolitionistMenuTab override void OnSelect() { + bSell = master.shnd.menustate.At("WasSelling").ToInt(); smofs = ofs; } override void OnDeselect() { + master.shnd.menustate.Insert("WasSelling",String.Format("%d",bSell)); smofs = ofs; }