mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
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.
This commit is contained in:
@@ -1447,7 +1447,7 @@ datum/preferences
|
|||||||
rlimb_data[limb] = choice
|
rlimb_data[limb] = choice
|
||||||
organ_data[limb] = "cyborg"
|
organ_data[limb] = "cyborg"
|
||||||
if(second_limb)
|
if(second_limb)
|
||||||
organ_data[second_limb] = choice
|
rlimb_data[second_limb] = choice
|
||||||
organ_data[second_limb] = "cyborg"
|
organ_data[second_limb] = "cyborg"
|
||||||
if(third_limb && organ_data[third_limb] == "amputated")
|
if(third_limb && organ_data[third_limb] == "amputated")
|
||||||
organ_data[third_limb] = null
|
organ_data[third_limb] = null
|
||||||
|
|||||||
Reference in New Issue
Block a user