From 63ee5b63456e9ef9788ec633f06f4357f0e0131c Mon Sep 17 00:00:00 2001 From: Yobrocharlie Date: Wed, 11 Sep 2024 00:36:24 -0700 Subject: [PATCH 1/3] Removes the slowdown --- code/modules/clothing/suits/armor.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index b866b81beb12..a257b2745eed 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -54,7 +54,7 @@ heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS resistance_flags = FIRE_PROOF | ACID_PROOF supports_variations = VOX_VARIATION | DIGITIGRADE_VARIATION_NO_NEW_ICON - slowdown = 0.5 + slowdown = 0 /obj/item/clothing/suit/armor/vest/marine/medium name = "medium tactical armor vest" @@ -67,7 +67,7 @@ /obj/item/clothing/suit/armor/vest/old name = "degrading armor vest" desc = "Older generation Type 1 armored vest. Due to degradation over time the vest is far less maneuverable to move in." - slowdown = 1 + slowdown = 0 /obj/item/clothing/suit/armor/vest/blueshirt name = "large armor vest" From d844dea2090eed44433da34f3e8c33bbdfcba196 Mon Sep 17 00:00:00 2001 From: Yobrocharlie Date: Thu, 12 Sep 2024 21:32:38 -0700 Subject: [PATCH 2/3] Update armor.dm --- code/modules/clothing/suits/armor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index a257b2745eed..855416170d98 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -67,7 +67,7 @@ /obj/item/clothing/suit/armor/vest/old name = "degrading armor vest" desc = "Older generation Type 1 armored vest. Due to degradation over time the vest is far less maneuverable to move in." - slowdown = 0 + slowdown = 1 /obj/item/clothing/suit/armor/vest/blueshirt name = "large armor vest" From ac47282116b219dae4be76b2282ba3fbe6ca4248 Mon Sep 17 00:00:00 2001 From: Yobrocharlie Date: Tue, 17 Sep 2024 21:19:48 -0700 Subject: [PATCH 3/3] removes the helmets slowdown too --- code/modules/clothing/head/helmet.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 0fffe349f56a..b14dc452b6a2 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -234,7 +234,7 @@ icon_state = "marine_command" item_state = "helmetalt" armor = list("melee" = 50, "bullet" = 75, "laser" = 55, "energy" = 25, "bomb" = 60, "bio" = 100, "fire" = 70, "acid" = 50) - slowdown = 0.3 + slowdown = 0 min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT clothing_flags = STOPSPRESSUREDAMAGE resistance_flags = FIRE_PROOF | ACID_PROOF