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