From 61b122aaf39503e507eafada79809c79261cb9da Mon Sep 17 00:00:00 2001
From: RedWolfie <13683223+RedWolfie@users.noreply.github.com>
Date: Fri, 18 Sep 2020 18:47:53 +0200
Subject: [PATCH] corrected blind message when knocking someone off a table
(#14370)
---
code/game/objects/structures/tables_racks.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm
index bdab5ca2466..e9abfca2dac 100644
--- a/code/game/objects/structures/tables_racks.dm
+++ b/code/game/objects/structures/tables_racks.dm
@@ -90,7 +90,7 @@
..()
if(climber)
climber.Weaken(2)
- climber.visible_message("[climber.name] has been knocked off the table", "You've been knocked off the table", "You see [climber.name] get knocked off the table")
+ climber.visible_message("[climber.name] has been knocked off the table", "You've been knocked off the table", "You hear [climber.name] get knocked off the table")
else if(Adjacent(user) && user.pulling && user.pulling.pass_flags & PASSTABLE)
user.Move_Pulled(src)
if(user.pulling.loc == loc)