From 2b53ba43cd4908e9acd7127df8c5abe0af2bd579 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Mon, 15 Oct 2018 01:21:03 +0200 Subject: [PATCH] You can no longer roll around when dead. --- code/_onclick/click.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index 006f350873b..8ce2177751c 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -236,6 +236,8 @@ Makes the mob face the direction of the clicked thing */ /mob/proc/MiddleShiftClickOn(atom/A) + if(incapacitated()) + return var/face_dir = get_cardinal_dir(src, A) if(forced_look == face_dir) forced_look = null