From b1765e6cb577f896b391ef8f930173dec0cdbf32 Mon Sep 17 00:00:00 2001
From: SailorDave <6238888+SailorDave@users.noreply.github.com>
Date: Mon, 2 Apr 2018 22:01:16 -0400
Subject: [PATCH] Fixes asphyxiation disease ignoring transmission and
activating on wrong stages
---
code/datums/diseases/advance/symptoms/choking.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/datums/diseases/advance/symptoms/choking.dm b/code/datums/diseases/advance/symptoms/choking.dm
index 4b12ec403c9..82516ab6ecc 100644
--- a/code/datums/diseases/advance/symptoms/choking.dm
+++ b/code/datums/diseases/advance/symptoms/choking.dm
@@ -105,7 +105,7 @@ Bonus
return
if(A.properties["stage_rate"] >= 8)
paralysis = TRUE
- if(A.properties["transmission"] >= 8)
+ if(A.properties["transmittable"] >= 8)
power = 2
/datum/symptom/asphyxiation/Activate(datum/disease/advance/A)
@@ -117,7 +117,7 @@ Bonus
to_chat(M, "[pick("Your windpipe feels thin.", "Your lungs feel small.")]")
Asphyxiate_stage_3_4(M, A)
M.emote("gasp")
- else
+ if(5)
to_chat(M, "[pick("Your lungs hurt!", "It hurts to breathe!")]")
Asphyxiate(M, A)
M.emote("gasp")