mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
specifies args (#20649)
This commit is contained in:
+5
-5
@@ -433,14 +433,14 @@
|
||||
return
|
||||
. = TRUE
|
||||
if(tilted)
|
||||
to_chat("<span class='warning'>You'll need to right it first!</span>")
|
||||
to_chat(user, "<span class='warning'>You'll need to right it first!</span>")
|
||||
return
|
||||
default_deconstruction_crowbar(user, I)
|
||||
|
||||
/obj/machinery/economy/vending/multitool_act(mob/user, obj/item/I)
|
||||
. = TRUE
|
||||
if(tilted)
|
||||
to_chat("<span class='warning'>You'll need to right it first!</span>")
|
||||
to_chat(user, "<span class='warning'>You'll need to right it first!</span>")
|
||||
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("<span class='warning'>You'll need to right it first!</span>")
|
||||
to_chat(user, "<span class='warning'>You'll need to right it first!</span>")
|
||||
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("<span class='warning'>You'll need to right it first!</span>")
|
||||
to_chat(user, "<span class='warning'>You'll need to right it first!</span>")
|
||||
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("<span class='warning'>The fastening bolts aren't on the ground, you'll need to right it first!</span>")
|
||||
to_chat(user, "<span class='warning'>The fastening bolts aren't on the ground, you'll need to right it first!</span>")
|
||||
return
|
||||
if(!I.use_tool(src, user, 0, volume = 0))
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user