diff --git a/code/modules/spacepods/spacepod.dm b/code/modules/spacepods/spacepod.dm index a962c0df000..bf67002d3e4 100644 --- a/code/modules/spacepods/spacepod.dm +++ b/code/modules/spacepods/spacepod.dm @@ -387,8 +387,8 @@ return if(L.on && unlocked == FALSE) //The buster is on, we don't have a lock system, and the pod is still somehow locked, unlocking. unlocked = TRUE - user.visible_message(user, "[user] has destroyed the [src]'s malfunction that locks the doors!", - "You destroy the [src]'s malfunction that locks the doors!") + user.visible_message(user, "[user] repairs [src]'s doors with [L].", + "You repair [src]'s doors with [L].") to_chat(user, "Turn the [L] on first.") return @@ -611,7 +611,7 @@ obj/spacepod/proc/add_equipment(mob/user, var/obj/item/device/spacepod_equipment return if(usr != src.pilot) - to_chat(usr, "You can't reach the controls from your chair") + to_chat(usr, "You can't reach the controls from your chair.") return use_internal_tank = !use_internal_tank to_chat(usr, "Now taking air from [use_internal_tank?"internal airtank":"environment"].") @@ -830,12 +830,12 @@ obj/spacepod/proc/add_equipment(mob/user, var/obj/item/device/spacepod_equipment return if(usr in passengers && usr != src.pilot) - to_chat(usr, "You can't reach the controls from your chair.") + to_chat(usr, "You can't reach the controls from your chair.") return if(!equipment_system.lock_system) - to_chat(usr, "There is no locking system you could lock.") - unlocked = TRUE //Should never be true without a lock, but if it somehow happens, that will force an unlock. + to_chat(usr, "[src] has no locking mechanism.") + unlocked = TRUE //Should never be false without a lock, but if it somehow happens, that will force an unlock. else unlocked = !unlocked to_chat(usr, "You [unlocked ? "unlock" : "lock"] the doors.") @@ -850,7 +850,7 @@ obj/spacepod/proc/add_equipment(mob/user, var/obj/item/device/spacepod_equipment return if(usr != src.pilot) - to_chat(usr, "You can't reach the controls from your chair") + to_chat(usr, "You can't reach the controls from your chair") return for(var/obj/machinery/door/poddoor/multi_tile/P in orange(3,src)) @@ -885,7 +885,7 @@ obj/spacepod/proc/add_equipment(mob/user, var/obj/item/device/spacepod_equipment return if(usr != src.pilot) - to_chat(usr, "You can't reach the controls from your chair") + to_chat(usr, "You can't reach the controls from your chair.") return if(!equipment_system.weapon_system) to_chat(usr, "[src] has no weapons!") @@ -902,7 +902,7 @@ obj/spacepod/proc/add_equipment(mob/user, var/obj/item/device/spacepod_equipment return if(usr != src.pilot) - to_chat(usr, "You can't reach the controls from your chair") + to_chat(usr, "You can't reach the controls from your chair.") return if(!equipment_system.cargo_system) to_chat(usr, "[src] has no cargo system!") @@ -918,7 +918,7 @@ obj/spacepod/proc/add_equipment(mob/user, var/obj/item/device/spacepod_equipment return if(usr != src.pilot) - to_chat(usr, "You can't reach the controls from your chair") + to_chat(usr, "You can't reach the controls from your chair.") return lightsToggle()