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.")