From f6ff723edb85ea799e0fe0220fbb7d9085450a4a Mon Sep 17 00:00:00 2001 From: GunHog Date: Mon, 29 Feb 2016 11:38:11 -0600 Subject: [PATCH] Some spelling and grammar things. It must be because of Intigracy... --- code/modules/mining/equipment_locker.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mining/equipment_locker.dm b/code/modules/mining/equipment_locker.dm index 842ece48421..d9a782098fc 100644 --- a/code/modules/mining/equipment_locker.dm +++ b/code/modules/mining/equipment_locker.dm @@ -889,7 +889,7 @@ /obj/item/hardsuit_jetpack name = "hardsuit jetpack upgrade" icon_state = "jetpack_upgrade" - desc = "A modular, compact set of thrusters designed to intigrate with a hardsuit. It is fueled by a tank inserted into the suit's storage compartment." + desc = "A modular, compact set of thrusters designed to integrate with a hardsuit. It is fueled by a tank inserted into the suit's storage compartment." /obj/item/hardsuit_jetpack/afterattack(var/obj/item/clothing/suit/space/hardsuit/S, mob/user) @@ -899,7 +899,7 @@ else if(S.jetpack) user << "[S] already has a jetpack installed." else if(S == user.get_item_by_slot(slot_wear_suit)) //Make sure the player is not wearing the suit before applying the upgrade. - user << "You cannot install the upgrade while wearing [S]." + user << "You cannot install the upgrade to [S] while wearing it." else S.jetpack = new /obj/item/weapon/tank/jetpack/suit(S) user << "You successfully install the jetpack into [S]."