From 423f7bafb870a338107fce93bdc1012e9a8c18c9 Mon Sep 17 00:00:00 2001 From: fluffe9911 Date: Tue, 19 Apr 2022 00:11:22 -0400 Subject: [PATCH 1/2] doesnt matter much but meh --- code/datums/mutations/body.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/mutations/body.dm b/code/datums/mutations/body.dm index 2ec9a1a0ef8e..63656802be41 100644 --- a/code/datums/mutations/body.dm +++ b/code/datums/mutations/body.dm @@ -92,7 +92,7 @@ /datum/mutation/human/dwarfism/on_acquiring(mob/living/carbon/human/owner) if(..()) return - owner.transform = owner.transform.Scale(1, 0.8) + owner.transform = owner.transform.Scale(1, 0.85) passtable_on(owner, GENETIC_MUTATION) owner.visible_message(span_danger("[owner] suddenly shrinks!"), span_notice("Everything around you seems to grow..")) From cdf0d93e1619740c28ac83e0d032e447cc7d23dd Mon Sep 17 00:00:00 2001 From: fluffe9911 Date: Tue, 19 Apr 2022 00:16:18 -0400 Subject: [PATCH 2/2] messed it up one second --- code/datums/mutations/body.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/mutations/body.dm b/code/datums/mutations/body.dm index 63656802be41..8bb26afdcf82 100644 --- a/code/datums/mutations/body.dm +++ b/code/datums/mutations/body.dm @@ -92,14 +92,14 @@ /datum/mutation/human/dwarfism/on_acquiring(mob/living/carbon/human/owner) if(..()) return - owner.transform = owner.transform.Scale(1, 0.85) + owner.transform = owner.transform.Scale(0.8, 0.8) passtable_on(owner, GENETIC_MUTATION) owner.visible_message(span_danger("[owner] suddenly shrinks!"), span_notice("Everything around you seems to grow..")) /datum/mutation/human/dwarfism/on_losing(mob/living/carbon/human/owner) if(..()) return - owner.transform = owner.transform.Scale(1, 1.25) + owner.transform = owner.transform.Scale(1.25, 1.25) passtable_off(owner, GENETIC_MUTATION) owner.visible_message(span_danger("[owner] suddenly grows!"), span_notice("Everything around you seems to shrink.."))