Merge pull request #3744 from Crazylemon64/human_icons_tweak

Changing a person's appearance now works better
This commit is contained in:
Fox McCloud
2016-03-03 20:38:18 -05:00
14 changed files with 64 additions and 36 deletions
+2 -2
View File
@@ -346,11 +346,11 @@ Traitors and the like can also be revived with the previous role mostly intact.
if(record_found)//If they have a record we can determine a few things.
new_character.real_name = record_found.fields["name"]
new_character.gender = record_found.fields["sex"]
new_character.change_gender(record_found.fields["sex"])
new_character.age = record_found.fields["age"]
new_character.b_type = record_found.fields["b_type"]
else
new_character.gender = pick(MALE,FEMALE)
new_character.change_gender(pick(MALE,FEMALE))
var/datum/preferences/A = new()
A.real_name = G_found.real_name
A.copy_to(new_character)