Void storm now updates mob health (#85498)

## About The Pull Request

it didnt before due to need_mob_update not being assigned to
how many of these even are there

## Changelog
🆑
fix: Void storm now updates mob health
/🆑
This commit is contained in:
SmArtKar
2024-08-14 13:21:48 +02:00
committed by GitHub
parent 5d0fc8b1db
commit b07cd71759
@@ -34,8 +34,8 @@
/datum/weather/void_storm/weather_act(mob/living/victim)
var/need_mob_update = FALSE
victim.adjustFireLoss(1, updating_health = FALSE)
victim.adjustOxyLoss(rand(1, 3), updating_health = FALSE)
need_mob_update += victim.adjustFireLoss(1, updating_health = FALSE)
need_mob_update += victim.adjustOxyLoss(rand(1, 3), updating_health = FALSE)
if(need_mob_update)
victim.updatehealth()
victim.adjust_eye_blur(rand(0 SECONDS, 2 SECONDS))