Bug - Fixed Trying to over-spleen doesn't increment for the items successfully consumed.

Erich

Member
r18729

I accidentally did this at first, but after noticing what happened tested it out again today and the same thing occurred. I right clicked on 6 dream jars and selected to use all of them. It used the first 3 normally, then gave the "spleen go pop" message, but my counter was still sitting at 0. Here's the cli output:

Code:
> ash my_spleen_use()

Returned: 0

You gain 7 Adventures
You gain 34 Strengthliness
You gain 26 Wizardliness
You gain 23 Chutzpah
You gain 5 Adventures
You gain 45 Muscleboundness
You gain 27 Wizardliness
You gain 25 Cheek
You gain 10 Adventures
You gain 35 Muscleboundness
You gain 28 Enchantedness
You gain 23 Smarm
[COLOR="#FF0000"]Your spleen might go kablooie.[/COLOR]

> ash my_spleen_use()

Returned: 0

I tried other ways to see if it would trigger, but they all worked fine:

> chew 6 Unconscious Collective Dream Jar

works as intended

> /use 6 Unconscious Collective Dream Jar

works as intended

> /use * Unconscious Collective Dream Jars

works as intended

(I didn't try "chew * Unconscious Collective Dream Jar")

So thus far it seems to be right-clicking and using all when all is too much.

===

ETA: I tried this with food, but it worked as intended with right-clicking and choosing "eat all" for 6 hi meins.
 
Last edited:

Darzil

Developer
r18803 fixes this by using same calculation as fullness.

Code:
You gain 6 Adventures
You gain 26 Strengthliness
You gain 29 Wizardliness
You gain 29 Chutzpah
You gain 6 Adventures
You gain 20 Fortitude
You gain 28 Mysteriousness
You gain 20 Sarcasm
You gain 6 Adventures
You gain 21 Beefiness
You gain 24 Mysteriousness
You gain 20 Sarcasm
Your spleen might go kablooie.

> ash my_spleen_use()

Returned: 12
 
Top