mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
[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:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user