Merge pull request #1110 from Krausus/Fixes-201505191414

Fixes Exchange Runtime and Ling Blood Regen
This commit is contained in:
ZomgPonies
2015-05-20 06:52:54 -04:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -648,7 +648,7 @@ datum/objective/steal/exchange
else if(faction == "blue")
targetinfo = new /datum/theft_objective/unique/docs_red
explanation_text = "Acquire [targetinfo.name] held by [target.current.real_name], the [target.assigned_role] and syndicate agent"
steal_target = targetinfo.typepath
steal_target = targetinfo
datum/objective/steal/exchange/backstab
@@ -659,7 +659,7 @@ datum/objective/steal/exchange/backstab
else if(faction == "blue")
targetinfo = new /datum/theft_objective/unique/docs_blue
explanation_text = "Do not give up or lose [targetinfo.name]."
steal_target = targetinfo.typepath
steal_target = targetinfo
datum/objective/download
proc/gen_amount_goal()
@@ -245,7 +245,7 @@
This function restores the subjects blood to max.
*/
/mob/living/carbon/human/proc/restore_blood()
if(!species.flags & NO_BLOOD)
if(!(species.flags & NO_BLOOD))
var/blood_volume = vessel.get_reagent_amount("blood")
vessel.add_reagent("blood",560.0-blood_volume)