mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 19:44:09 +01:00
Fixes Blood Math
This commit is contained in:
@@ -570,9 +570,9 @@ Note that amputating the affected organ does in fact remove the infection from t
|
||||
var/bicardose = owner.reagents.get_reagent_amount("styptic_powder")
|
||||
if(!bicardose) //styptic powder stops internal wounds from growing bigger with time, and also stop bleeding
|
||||
W.open_wound(0.1 * wound_update_accuracy)
|
||||
owner.blood_volume -= (0.05 * W.damage * wound_update_accuracy)
|
||||
owner.blood_volume = max(owner.blood_volume - (0.05 * W.damage * wound_update_accuracy), 0)
|
||||
|
||||
owner.blood_volume -= (0.02 * W.damage * wound_update_accuracy)
|
||||
owner.blood_volume = max(owner.blood_volume - (0.02 * W.damage * wound_update_accuracy), 0)
|
||||
if(prob(1 * wound_update_accuracy))
|
||||
owner.custom_pain("You feel a stabbing pain in your [name]!",1)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user