From e97124bb6c430c003992071fec8dfb068af7a5ab Mon Sep 17 00:00:00 2001
From: Belsima <31827220+Belsima@users.noreply.github.com>
Date: Thu, 12 Oct 2017 23:51:16 -0400
Subject: [PATCH] Minor grammar fixes + cold protection. (#4044)
* Removes extra space.
* Grammar fixes + cold protection.
---
code/game/machinery/doors/firedoor.dm | 2 +-
code/modules/clothing/suits/miscellaneous.dm | 12 +++++++++---
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm
index 931e6cbe1e..ede8c53de2 100644
--- a/code/game/machinery/doors/firedoor.dm
+++ b/code/game/machinery/doors/firedoor.dm
@@ -162,7 +162,7 @@
return
if(alarmed && density && lockdown && !allowed(user))
- user << "Access denied. Please wait for authorities to arrive, or for the alert to clear."
+ user << "Access denied. Please wait for authorities to arrive, or for the alert to clear."
return
else
user.visible_message("\The [src] [density ? "open" : "close"]s for \the [user].",\
diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm
index 751b5c483f..3298541540 100644
--- a/code/modules/clothing/suits/miscellaneous.dm
+++ b/code/modules/clothing/suits/miscellaneous.dm
@@ -208,7 +208,7 @@
/obj/item/clothing/suit/iasexy
name = "sexy internal affairs suit"
- desc = "Now where's your pen?~..."
+ desc = "Now where's your pen?~"
icon_state = "iacost"
body_parts_covered = UPPER_TORSO|FEET|LOWER_TORSO|EYES
flags_inv = HIDEJUMPSUIT|HIDESHOES|HIDETIE|HIDEHOLSTER
@@ -377,12 +377,18 @@ obj/item/clothing/suit/storage/toggle/peacoat
desc = "A thick jacket with a rubbery, water-resistant shell."
icon_state = "pufferjacket"
item_state_slots = list(slot_r_hand_str = "chainmail", slot_l_hand_str = "chainmail")
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
+ cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS
+ min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE
+ flags_inv = HIDEHOLSTER
/obj/item/clothing/suit/jacket/puffer/vest
name = "puffer vest"
desc = "A thick vest with a rubbery, water-resistant shell."
icon_state = "puffervest"
item_state_slots = list(slot_r_hand_str = "chainmail", slot_l_hand_str = "chainmail")
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO
+ cold_protection = UPPER_TORSO|LOWER_TORSO
/obj/item/clothing/suit/storage/miljacket
name = "military jacket"
@@ -590,7 +596,7 @@ obj/item/clothing/suit/storage/toggle/peacoat
/obj/item/clothing/suit/whitedress
name = "white dress"
- desc = "A fancy white dress."
+ desc = "A fancy dress."
icon_state = "white_dress"
item_state_slots = list(slot_r_hand_str = "white_dress", slot_l_hand_str = "white_dress")
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS
@@ -827,7 +833,7 @@ obj/item/clothing/suit/storage/toggle/peacoat
*/
/obj/item/clothing/suit/storage/toggle/track
name = "track jacket"
- desc = "a track jacket, for the athletic."
+ desc = "A track jacket, for the athletic."
icon_state = "trackjacket"
item_state_slots = list(slot_r_hand_str = "black_labcoat", slot_l_hand_str = "black_labcoat")
allowed = list (/obj/item/weapon/pen, /obj/item/weapon/paper, /obj/item/device/flashlight,/obj/item/weapon/tank/emergency/oxygen, /obj/item/weapon/storage/fancy/cigarettes, /obj/item/weapon/storage/box/matches, /obj/item/weapon/reagent_containers/food/drinks/flask)