From e76a4b5e3afe431f762d78857bbe56fc4bad32ac Mon Sep 17 00:00:00 2001 From: Enric Gabriel <43283559+SandPoot@users.noreply.github.com> Date: Thu, 14 May 2020 23:19:59 -0300 Subject: [PATCH] ce hardsuit buff and give tweak (#6) --- code/modules/clothing/spacesuits/hardsuit.dm | 2 +- sandcode/code/modules/mob/living/give.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index 20b6034cd4..706b651c48 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -218,7 +218,7 @@ name = "advanced hardsuit" desc = "An advanced suit that protects against hazardous, low pressure environments. Shines with a high polish." item_state = "ce_hardsuit" - armor = list("melee" = 40, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 50, "bio" = 100, "rad" = 95, "fire" = 100, "acid" = 90) + armor = list("melee" = 40, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 90) heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS max_heat_protection_temperature = FIRE_IMMUNITY_MAX_TEMP_PROTECT helmettype = /obj/item/clothing/head/helmet/space/hardsuit/engine/elite diff --git a/sandcode/code/modules/mob/living/give.dm b/sandcode/code/modules/mob/living/give.dm index 25792ec4de..ba03d21615 100644 --- a/sandcode/code/modules/mob/living/give.dm +++ b/sandcode/code/modules/mob/living/give.dm @@ -31,11 +31,11 @@ to_chat(usr, "You tried to give yourself \the [I], but you didn't want it.") return if(get_empty_held_index_for_side()) - to_chat(usr, "You offer \the [I] to [src]") + to_chat(usr, "You offer \the [I] to [src].") switch(alert(src, "[user] wants to give you \a [I], do you accept it?", , "Yes", "No")) if("Yes") if(!I) - to_chat(usr, "You need the item with you to give it!") return /*sadly broken if(TRAIT_NODROP || ABSTRACT_ITEM_TRAIT) to_chat(usr, "That's not something you can give.")