From 9d7ea4c5a884981612898d07edff31d9ec371fee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ev=D0=B0n=20Summers?= Date: Mon, 5 Jun 2023 21:05:33 +1000 Subject: [PATCH] Instruction for how to right a vending machine (#21182) * Instruction for how to right a vending machine * Instruction for righting vendor when not adjacent --- code/game/machinery/vendors/vending.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/vendors/vending.dm b/code/game/machinery/vendors/vending.dm index c4ec3faa12a..b394b067f28 100644 --- a/code/game/machinery/vendors/vending.dm +++ b/code/game/machinery/vendors/vending.dm @@ -205,8 +205,7 @@ . = ..() if(tilted) . += "It's been tipped over and won't be usable unless it's righted." - if(Adjacent(user)) - . += "You can Alt-Click it to right it." + . += "You can Alt-Click it to right it when adjacent." if(aggressive) . += "Its product lights seem to be blinking ominously..." @@ -606,7 +605,7 @@ return if(tilted) - to_chat(user, "[src] is tipped over and non-functional! You'll need to right it first.") + to_chat(user, "[src] is tipped over and non-functional! Alt-Click to right it first.") return if(seconds_electrified != 0 && shock(user, 100))