From 7c0dcd03d0dd71499ecc1826ce69e3811395f180 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Tue, 26 Sep 2017 23:31:21 -0500 Subject: [PATCH 1/2] Renames the cloning modifier, minor grammatical fixes --- code/game/machinery/cloning.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index b6945b2c07..00334a6f5a 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -149,7 +149,7 @@ modifier_lower_bound = round(modifier_lower_bound * clone_sickness_length, 1) modifier_upper_bound = round(modifier_upper_bound * clone_sickness_length, 1) - H.add_modifier(/datum/modifier/recently_cloned, rand(modifier_lower_bound, modifier_upper_bound)) + H.add_modifier(/datum/modifier/cloning_sickness, rand(modifier_lower_bound, modifier_upper_bound)) // Modifier that doesn't do anything. H.add_modifier(/datum/modifier/cloned) @@ -523,9 +523,9 @@ */ // Gives rather nasty downsides for awhile, making them less robust. -/datum/modifier/recently_cloned - name = "recently cloned" - desc = "You feel rather weak, having been cloned awhile ago." +/datum/modifier/cloning_sickness + name = "cloning sickness" + desc = "You feel rather weak, having been cloned not so long ago." on_created_text = "You feel really weak." on_expired_text = "You feel your strength returning to you." From 5d819ade53417ee84382063702c62d31f422d148 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Sun, 1 Oct 2017 12:50:06 -0500 Subject: [PATCH 2/2] Fixes the entire cloning_sickness PR --- code/game/machinery/cloning.dm | 2 +- code/modules/mob/_modifiers/cloning.dm | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index eb661b2c7c..6fd9cf0f4e 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -153,7 +153,7 @@ modifier_lower_bound = round(modifier_lower_bound * clone_sickness_length, 1) modifier_upper_bound = round(modifier_upper_bound * clone_sickness_length, 1) - H.add_modifier(/datum/modifier/recently_cloned, rand(modifier_lower_bound, modifier_upper_bound)) + H.add_modifier(/datum/modifier/cloning_sickness, rand(modifier_lower_bound, modifier_upper_bound)) // Modifier that doesn't do anything. H.add_modifier(/datum/modifier/cloned) diff --git a/code/modules/mob/_modifiers/cloning.dm b/code/modules/mob/_modifiers/cloning.dm index 71b4c8b305..9162ae8f1d 100644 --- a/code/modules/mob/_modifiers/cloning.dm +++ b/code/modules/mob/_modifiers/cloning.dm @@ -3,9 +3,9 @@ */ // Gives rather nasty downsides for awhile, making them less robust. -/datum/modifier/recently_cloned - name = "recently cloned" - desc = "You feel rather weak, having been cloned awhile ago." +/datum/modifier/cloning_sickness + name = "cloning sickness" + desc = "You feel rather weak, having been cloned not so long ago." on_created_text = "You feel really weak." on_expired_text = "You feel your strength returning to you."