Remember store buy/sell state.

This commit is contained in:
Mari the Deer 2022-04-12 16:26:41 +02:00
commit fd9ea92966
4 changed files with 7 additions and 4 deletions

View file

@ -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**

View file

@ -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)

View file

@ -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-";

View file

@ -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;
}