mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-29 06:57:42 +01:00
Bugfix: False code in blood generation.
This commit is contained in:
@@ -964,7 +964,7 @@
|
||||
if(blood_volume < 560 && blood_volume)
|
||||
var/datum/reagent/blood/B = locate() in vessel //Grab some blood
|
||||
if(B) // Make sure there's some blood at all
|
||||
if(!B.data["donor"] == src) //If it's not theirs, then we look for theirs
|
||||
if(B.data["donor"] != src) //If it's not theirs, then we look for theirs
|
||||
for(var/datum/reagent/blood/D in vessel)
|
||||
if(D.data["donor"] == src)
|
||||
B = D
|
||||
|
||||
Reference in New Issue
Block a user