diff --git a/code/modules/atmospherics/machinery/components/binary_devices/pump.dm b/code/modules/atmospherics/machinery/components/binary_devices/pump.dm index 85bdd68245..26c3d25e85 100644 --- a/code/modules/atmospherics/machinery/components/binary_devices/pump.dm +++ b/code/modules/atmospherics/machinery/components/binary_devices/pump.dm @@ -184,7 +184,7 @@ Thus, the two variables affect pump operation are set in New(): var/turf/T = get_turf(src) var/area/A = get_area(src) if(!(stat & NOPOWER) && on) - to_chat(user, "You cannot unwrench this [src], turn it off first!") + to_chat(user, "You cannot unwrench [src], turn it off first!") else investigate_log("Pump, [src.name], was unwrenched by [key_name(usr)] at [x], [y], [z], [A]", "atmos") message_admins("Pump, [src.name], was unwrenched by [ADMIN_LOOKUPFLW(user)] at [ADMIN_COORDJMP(T)]") diff --git a/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm b/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm index eb9fd1d453..d6bc3bbdb7 100644 --- a/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm +++ b/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm @@ -181,7 +181,7 @@ Thus, the two variables affect pump operation are set in New(): var/turf/T = get_turf(src) //var/area/A = get_area(src) if(!(stat & NOPOWER) && on) - to_chat(user, "You cannot unwrench this [src], turn it off first!") + to_chat(user, "You cannot unwrench [src], turn it off first!") else investigate_log("Volume Pump, [src.name], was unwrenched by [key_name(usr)] at [x], [y], [z], [loc.loc]", "atmos") message_admins("Volume Pump, [src.name], was unwrenched by [ADMIN_LOOKUPFLW(usr)] at [ADMIN_COORDJMP(T)]")