mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Fixes Changeling Fleshmend blood bug
The fleshmend ability added blood beyond maximum, thus allowing for easy changeling detection. This PR fixes this. 🆑 fix: Changeling fleshmend no longer overfills their blood. /🆑
This commit is contained in:
@@ -48,7 +48,7 @@
|
||||
var/healpertick = -(total_healing / healing_ticks)
|
||||
user.heal_overall_damage((-healpertick/recent_uses), (-healpertick/recent_uses))
|
||||
user.adjustOxyLoss(healpertick/recent_uses)
|
||||
user.blood_volume += 30
|
||||
user.blood_volume = min(user.blood_volume + 30, BLOOD_VOLUME_NORMAL)
|
||||
user.updatehealth()
|
||||
else
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user