From 5dc02c3cecf2a6fe6956c9dac0d6112ef0391db0 Mon Sep 17 00:00:00 2001
From: GDN <96800819+GDNgit@users.noreply.github.com>
Date: Tue, 21 Mar 2023 10:00:22 -0500
Subject: [PATCH] specifies args (#20649)
---
code/game/machinery/vendors/vending.dm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/code/game/machinery/vendors/vending.dm b/code/game/machinery/vendors/vending.dm
index aeeb2493692..08da36ad3d6 100644
--- a/code/game/machinery/vendors/vending.dm
+++ b/code/game/machinery/vendors/vending.dm
@@ -433,14 +433,14 @@
return
. = TRUE
if(tilted)
- to_chat("You'll need to right it first!")
+ to_chat(user, "You'll need to right it first!")
return
default_deconstruction_crowbar(user, I)
/obj/machinery/economy/vending/multitool_act(mob/user, obj/item/I)
. = TRUE
if(tilted)
- to_chat("You'll need to right it first!")
+ to_chat(user, "You'll need to right it first!")
return
if(!I.use_tool(src, user, 0, volume = I.tool_volume))
return
@@ -449,7 +449,7 @@
/obj/machinery/economy/vending/screwdriver_act(mob/user, obj/item/I)
. = TRUE
if(tilted)
- to_chat("You'll need to right it first!")
+ to_chat(user, "You'll need to right it first!")
return
if(!I.use_tool(src, user, 0, volume = I.tool_volume))
return
@@ -468,7 +468,7 @@
/obj/machinery/economy/vending/wirecutter_act(mob/user, obj/item/I)
. = TRUE
if(tilted)
- to_chat("You'll need to right it first!")
+ to_chat(user, "You'll need to right it first!")
return
if(I.use_tool(src, user, 0, volume = 0))
wires.Interact(user)
@@ -476,7 +476,7 @@
/obj/machinery/economy/vending/wrench_act(mob/user, obj/item/I)
. = TRUE
if(tilted)
- to_chat("The fastening bolts aren't on the ground, you'll need to right it first!")
+ to_chat(user, "The fastening bolts aren't on the ground, you'll need to right it first!")
return
if(!I.use_tool(src, user, 0, volume = 0))
return