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:
alex-gh
2018-08-19 06:00:34 +02:00
parent de89b5d1ec
commit 56e30101c1
@@ -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