Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
AndroBetel committed Aug 22, 2024
1 parent 6236ab2 commit a86724f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions code/modules/mob/new_player/preferences_setup.dm
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@
randomize_hair_color("facial")
randomize_eyes_color()
randomize_skin_color()
underwear = gender == MALE ? pick(GLOB.underwear_m) : pick(GLOB.underwear_f)
undershirt = gender == MALE ? pick(GLOB.undershirt_m) : pick(GLOB.undershirt_f)
var/list/undershirt_options = gender == MALE ? GLOB.undershirt_m : GLOB.undershirt_f
undershirt = pick(undershirt_options-GLOB.undershirt_restricted)
var/list/underwear_options = gender == MALE ? GLOB.underwear_m : GLOB.underwear_f
underwear = pick(underwear_options-GLOB.underwear_restricted)
backbag = 2
age = rand(AGE_MIN,AGE_MAX)
if(H)
Expand Down

0 comments on commit a86724f

Please sign in to comment.