From 43f1fc3fd6d51d03e8daa2c5da84316ba33a627f Mon Sep 17 00:00:00 2001 From: Mandurrrh Date: Mon, 2 Mar 2015 08:07:52 -0500 Subject: [PATCH] Adds appropriate message for user and nearby mobs for being knocked off table. Also uses weaken instead of stun to physically knock the player over. --- code/game/objects/structures/tables_racks.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index a05f44b2625..ae78d896e37 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -221,8 +221,8 @@ /obj/structure/table/attack_hand(mob/living/user) user.changeNext_move(CLICK_CD_MELEE) if(tableclimber) - tableclimber.Stun(2) - visible_message("You've been knocked off the table!") + tableclimber.Weaken(2) + tableclimber.visible_message("[tableclimber.name] has been knocked off the table", "You've been knocked off the table", "You see [tableclimber.name] get knocked off the table") /obj/structure/table/attack_tk() // no telehulk sorry @@ -399,7 +399,7 @@ add_logs(user, src, "climbed onto") user.Stun(2) return 1 - tableclimber = null + tableclimber = null return 0