diff --git a/code/modules/mining/abandonedcrates.dm b/code/modules/mining/abandonedcrates.dm
index 769e85894d1..25358df5af2 100644
--- a/code/modules/mining/abandonedcrates.dm
+++ b/code/modules/mining/abandonedcrates.dm
@@ -153,18 +153,18 @@
/obj/structure/closet/crate/secure/loot/attack_hand(mob/user)
if(locked)
- user << "The crate is locked with a Deca-code lock."
+ to_chat(user, "The crate is locked with a Deca-code lock.")
var/input = input(usr, "Enter [codelen] digits.", "Deca-Code Lock", "") as text
if(in_range(src, user))
if (input == code)
- user << "The crate unlocks!"
+ to_chat(user, "The crate unlocks!")
locked = 0
overlays.Cut()
overlays += "securecrateg"
else if (input == null || length(input) != codelen)
- user << "You leave the crate alone."
+ to_chat(user, "You leave the crate alone.")
else
- user << "A red light flashes."
+ to_chat(user, "A red light flashes.")
lastattempt = replacetext(input, 0, "z")
attempts--
if(attempts == 0)
@@ -180,11 +180,11 @@
if(istype(W, /obj/item/weapon/card/emag))
boom(user)
if(istype(W, /obj/item/device/multitool))
- user << "DECA-CODE LOCK REPORT:"
+ to_chat(user, "DECA-CODE LOCK REPORT:")
if(attempts == 1)
- user << "* Anti-Tamper Bomb will activate on next failed access attempt."
+ to_chat(user, "* Anti-Tamper Bomb will activate on next failed access attempt.")
else
- user << "* Anti-Tamper Bomb will activate after [src.attempts] failed access attempts."
+ to_chat(user, "* Anti-Tamper Bomb will activate after [src.attempts] failed access attempts.")
if(lastattempt != null)
var/list/guess = list()
var/bulls = 0
@@ -199,7 +199,7 @@
++bulls
else if(a)
++cows
- user << "Last code attempt had [bulls] correct digits at correct positions and [cows] correct digits at incorrect positions."
+ to_chat(user, "Last code attempt had [bulls] correct digits at correct positions and [cows] correct digits at incorrect positions.")
else ..()
else ..()
@@ -210,7 +210,7 @@
..()
/obj/structure/closet/crate/secure/loot/proc/boom(mob/user)
- user << "The crate's anti-tamper system activates!"
+ to_chat(user, "The crate's anti-tamper system activates!")
for(var/atom/movable/AM in src)
qdel(AM)
var/turf/T = get_turf(src)