From 893b3ac6eb6c4cef78824ce9a0e4a7f452817222 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Tue, 10 Apr 2012 22:59:00 +0100 Subject: [PATCH] Fixes hand icon always showing right hand on rejoining round. Credit: JakeTweet --- code/modules/mob/living/carbon/carbon.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 5cd546109eb..b9a7dd4b71c 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -220,6 +220,11 @@ if(src.sleeping_willingly) src.sleeping = 0 src.sleeping_willingly = 0 + // Update the hands-indicator on re-join. + if (!( src.hand )) + src.hands.dir = NORTH + else + src.hands.dir = SOUTH /mob/living/carbon/human/proc/GetOrgans() var/list/L = list( )