From 09cec11625509f47935ea1f51b73d9efd26bf3ef Mon Sep 17 00:00:00 2001 From: Theos Date: Mon, 18 Dec 2023 01:00:06 -0500 Subject: [PATCH] AB+ blood fix (#2588) ## About The Pull Request Adds missing compatible bloodtypes to AB+ blood ## Why It's Good For The Game People with AB+ blood will no longer die when being given any + bloodtype ## Changelog :cl: fix: AB+ blood is no longer incompatible with + bloodtypes /:cl: Signed-off-by: Theos --- code/datums/blood_type.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/blood_type.dm b/code/datums/blood_type.dm index 9541699db92c..3fb4e4198566 100644 --- a/code/datums/blood_type.dm +++ b/code/datums/blood_type.dm @@ -28,7 +28,7 @@ /datum/blood_type/ab_plus name = "AB+" - compatible_types = list(/datum/blood_type/b_minus, /datum/blood_type/a_minus, /datum/blood_type/ab_minus, /datum/blood_type/o_minus) + compatible_types = list(/datum/blood_type/b_minus, /datum/blood_type/b_plus, /datum/blood_type/a_minus, /datum/blood_type/a_plus, /datum/blood_type/ab_minus, /datum/blood_type/ab_plus, /datum/blood_type/o_minus, /datum/blood_type/o_plus) /datum/blood_type/o_minus name = "O-"