diff --git a/FuturePlans.md b/FuturePlans.md index 1d2575088..ba48d9923 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/README.md b/README.md index 39341bf30..b45f612e4 100644 --- a/README.md +++ b/README.md @@ -669,7 +669,7 @@ A cute plush doll of **Saya**'s favorite moth girl. Apparently the **Nukritas** ### Saya's Mug ![](docimg/sayasmug.png) -A personalized coffee mug that **Saya** uses to totally drink black coffee, without any sugar. Gifted by her brother **Taro** on her 16th birthday. +A personalized coffee mug that **Saya** uses to totally drink black coffee, *(allegedly)* without any sugar. Gifted by her brother **Taro** on her 16th birthday. ### Demolitionist Plush (Heretic) ![](docimg/demoplush.png) diff --git a/language.version b/language.version index c1fdec1b0..f0194da73 100644 --- a/language.version +++ b/language.version @@ -1,3 +1,3 @@ [default] -SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r21 \cu(Thu 7 Apr 15:42:24 CEST 2022)\c-"; -SWWM_SHORTVER="\cw1.3pre r21 \cu(2022-04-07 15:42:24)\c-"; +SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r22 \cu(Tue 12 Apr 16:26:41 CEST 2022)\c-"; +SWWM_SHORTVER="\cw1.3pre r22 \cu(2022-04-12 16:26:41)\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; }