Better wording+span ending

Added a few missing </span> and rewording of the application of the pod
lock buster on a locked pod without lock, and trying to lock a pod
without a locking system.
This commit is contained in:
Mars
2018-01-24 22:09:53 +01:00
parent 66838caa8b
commit 74ae208bf6
+10 -10
View File
@@ -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, "<span class='warning'>[user] has destroyed the [src]'s malfunction that locks the doors!</span>",
"<span class='notice'>You destroy the [src]'s malfunction that locks the doors!</span>")
user.visible_message(user, "<span class='notice'>[user] repairs [src]'s doors with [L].</span>",
"<span class='notice'>You repair [src]'s doors with [L].</span>")
to_chat(user, "<span class='notice'>Turn the [L] on first.</span>")
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, "<span class='notice'>You can't reach the controls from your chair")
to_chat(usr, "<span class='notice'>You can't reach the controls from your chair.</span>")
return
use_internal_tank = !use_internal_tank
to_chat(usr, "<span class='notice'>Now taking air from [use_internal_tank?"internal airtank":"environment"].</span>")
@@ -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, "<span class='notice'>You can't reach the controls from your chair.")
to_chat(usr, "<span class='notice'>You can't reach the controls from your chair.</span>")
return
if(!equipment_system.lock_system)
to_chat(usr, "<span class='notice'>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, "<span class='warning'>[src] has no locking mechanism.</span>")
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, "<span class='warning'>You [unlocked ? "unlock" : "lock"] the doors.</span>")
@@ -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, "<span class='notice'>You can't reach the controls from your chair")
to_chat(usr, "<span class='notice'>You can't reach the controls from your chair</span>")
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, "<span class='notice'>You can't reach the controls from your chair")
to_chat(usr, "<span class='notice'>You can't reach the controls from your chair.</span>")
return
if(!equipment_system.weapon_system)
to_chat(usr, "<span class='warning'>[src] has no weapons!</span>")
@@ -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, "<span class='notice'>You can't reach the controls from your chair")
to_chat(usr, "<span class='notice'>You can't reach the controls from your chair.</span>")
return
if(!equipment_system.cargo_system)
to_chat(usr, "<span class='warning'>[src] has no cargo system!</span>")
@@ -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, "<span class='notice'>You can't reach the controls from your chair")
to_chat(usr, "<span class='notice'>You can't reach the controls from your chair.</span>")
return
lightsToggle()