[MIRROR] Fixes heretic mask of madness not applying stamina damage when it should [MDB IGNORE] (#12990)

* swaps a greater than for a less than (#66284)

* Fixes heretic mask of madness not applying stamina damage when it should

Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-04-22 15:01:19 +01:00
committed by GitHub
co-authored by MrMelbert
parent 65cd2af989
commit 80c623fbbd
@@ -66,7 +66,7 @@
if(DT_PROB(40, delta_time))
human_in_range.Jitter(5)
if(human_in_range.getStaminaLoss() >= 85 && DT_PROB(30, delta_time))
if(human_in_range.getStaminaLoss() <= 85 && DT_PROB(30, delta_time))
human_in_range.emote(pick("giggle", "laugh"))
human_in_range.adjustStaminaLoss(10)