Fix horrible message in atmospherics unwrenching stuff

You cannot unwrench this [src], it too exerted due to internal pressure.

IT
TOO
EXERTED

and this [src]

it's now
You cannot unwrench \the [src], it is too exerted due to internal pressure.
This commit is contained in:
Tigercat2000
2015-07-08 16:37:58 -07:00
parent a78a0323b2
commit 5ef171cf48
16 changed files with 16 additions and 16 deletions

View File

@@ -297,7 +297,7 @@
var/datum/gas_mixture/int_air = return_air()
var/datum/gas_mixture/env_air = loc.return_air()
if ((int_air.return_pressure()-env_air.return_pressure()) > 2*ONE_ATMOSPHERE)
user << "<span class='alert'>You cannot unwrench this [src], it too exerted due to internal pressure.</span>"
user << "<span class='alert'>You cannot unwrench \the [src], it is too exerted due to internal pressure.</span>"
add_fingerprint(user)
return 1
playsound(get_turf(src), 'sound/items/Ratchet.ogg', 50, 1)

View File

@@ -161,7 +161,7 @@
var/datum/gas_mixture/int_air = return_air()
var/datum/gas_mixture/env_air = loc.return_air()
if ((int_air.return_pressure()-env_air.return_pressure()) > 2*ONE_ATMOSPHERE)
user << "<span class='alert'>You cannot unwrench this [src], it too exerted due to internal pressure.</span>"
user << "<span class='alert'>You cannot unwrench \the [src], it is too exerted due to internal pressure.</span>"
add_fingerprint(user)
return 1
playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1)

View File

@@ -193,7 +193,7 @@ Thus, the two variables affect pump operation are set in New():
var/datum/gas_mixture/int_air = return_air()
var/datum/gas_mixture/env_air = loc.return_air()
if ((int_air.return_pressure()-env_air.return_pressure()) > 2*ONE_ATMOSPHERE)
user << "<span class='alert'>You cannot unwrench this [src], it too exerted due to internal pressure.</span>"
user << "<span class='alert'>You cannot unwrench \the [src], it is too exerted due to internal pressure.</span>"
add_fingerprint(user)
return 1
playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1)

View File

@@ -180,7 +180,7 @@ Thus, the two variables affect pump operation are set in New():
var/datum/gas_mixture/int_air = return_air()
var/datum/gas_mixture/env_air = loc.return_air()
if ((int_air.return_pressure()-env_air.return_pressure()) > 2*ONE_ATMOSPHERE)
user << "<span class='alert'>You cannot unwrench this [src], it too exerted due to internal pressure.</span>"
user << "<span class='alert'>You cannot unwrench \the [src], it is too exerted due to internal pressure.</span>"
add_fingerprint(user)
return 1
playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1)