From e368c78b425bcbb6fc587f0a6a9d4857ac960b6d Mon Sep 17 00:00:00 2001 From: Techhead0 Date: Fri, 8 May 2015 21:12:15 -0400 Subject: [PATCH] Fixes rlimb assignment for hands/feet in chargen An easy fix for a small typo that caused rlimbs not to be assigned to second_limb (hands/feet). I'm surprised the bug went unnoticed this long. --- code/modules/client/preferences.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 5a5e09a5ac..051f6e4c20 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1447,7 +1447,7 @@ datum/preferences rlimb_data[limb] = choice organ_data[limb] = "cyborg" if(second_limb) - organ_data[second_limb] = choice + rlimb_data[second_limb] = choice organ_data[second_limb] = "cyborg" if(third_limb && organ_data[third_limb] == "amputated") organ_data[third_limb] = null