Healium bolts now heal people instead of damaging them. (#92137)

## About The Pull Request
Fixes healium bolts

## Why It's Good For The Game
Healium bolts are supposed to heal people

## Changelog

🆑
fix: Healium bolts now heal instead of dealing damage
/🆑
This commit is contained in:
combustor
2025-07-15 20:31:54 +03:00
committed by GitHub
parent c3b8936ac7
commit 9ea010c060

View File

@@ -143,7 +143,7 @@
var/obj/item/ammo_casing/rebar/healium/casing = parent
casing.heals_left -= seconds_per_tick * 1 SECONDS
var/update_health = FALSE
var/healing = healing_per_second * seconds_per_tick
var/healing = -healing_per_second * seconds_per_tick
update_health += owner.adjustBruteLoss(healing, updating_health = FALSE, required_bodytype = BODYTYPE_ORGANIC)
update_health += owner.adjustFireLoss(healing, updating_health = FALSE, required_bodytype = BODYTYPE_ORGANIC)
update_health += owner.adjustToxLoss(healing, updating_health = FALSE, required_biotype = BODYTYPE_ORGANIC)