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))