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