Skip to content

Commit

Permalink
skin color for edit appearance
Browse files Browse the repository at this point in the history
just added the ability to choose skin color
  • Loading branch information
chaos-creations committed Aug 17, 2024
1 parent b6a12a5 commit 682e0b3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions void-marines/code/admin_tools.dm
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@

// Changing appear \\
var/new_skin_color = tgui_input_list(src, "Choose your character's skin color:", "Character Preferences", GLOB.skin_color_list)
if(new_skin_color)
M.skin_color = new_skin_color

var/new_facial = input(M, "Please select facial hair color.", "Character Generation") as color
if(new_facial)
M.r_facial = hex2num(copytext(new_facial, 2, 4))
Expand Down

0 comments on commit 682e0b3

Please sign in to comment.