From c40a03a256aa6a68c7758cf019d305fffd26b945 Mon Sep 17 00:00:00 2001
From: Pinta <124479862+deertools@users.noreply.github.com>
Date: Wed, 22 Feb 2023 23:19:50 -0500
Subject: [PATCH] Update weight.dm
---
code/datums/diseases/advance/symptoms/weight.dm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/code/datums/diseases/advance/symptoms/weight.dm b/code/datums/diseases/advance/symptoms/weight.dm
index 652a771b..fdba747f 100644
--- a/code/datums/diseases/advance/symptoms/weight.dm
+++ b/code/datums/diseases/advance/symptoms/weight.dm
@@ -66,8 +66,8 @@ Bonus
symptom_delay_min = 15
symptom_delay_max = 45
threshold_desc = list(
- "Transmission 7" = "Increases the rate of cell replication.",
- "Transmission 12" = "Increases the rate of cell replication further"
+ "Stage Speed 7" = "Increases the rate of cell replication.",
+ "Stage Speed 12" = "Increases the rate of cell replication further"
)
@@ -83,9 +83,9 @@ Bonus
to_chat(M, "[pick("You feel oddly full...", "You feel more plush...", "You feel more huggable...", "You hear an odd gurgle from your stomach")]")
else
to_chat(M, "[pick("You feel your body churn...", "You feel heavier...", "You hear an ominous gurgle from your belly...", "You feel bulkier...")]")
- if(A.properties["transmittable"] >= 12) //get chunkier quicker
+ if(A.properties["stage_rate"] >= 12) //get chunkier quicker
M.adjust_fatness(70, FATTENING_TYPE_VIRUS)
- else if(A.properties["transmittable"] >= 7)
+ else if(A.properties["stage_rate"] >= 7)
M.adjust_fatness(40, FATTENING_TYPE_VIRUS)
else
M.adjust_fatness(15, FATTENING_TYPE_VIRUS)