Skip to content

Commit

Permalink
Removes unnecessary If check
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben10083 committed Jul 6, 2023
1 parent 7812ea0 commit abfc4be
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions code/modules/gear_presets/synths.dm
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,7 @@
new_human.h_style = "Bald"
new_human.f_style = "Shaved"
if(prob(5))
if(new_human.grad_style != "None") //if person had Hair Dye trait on character used to load in Working Joe, this forces off the gradient
new_human.grad_style = "None"
new_human.grad_style = "None" //No gradients for Working Joes
new_human.h_style = "Shoulder-length Hair" //Added the chance of hair as per Monkeyfist lore accuracy
new_human.r_eyes = 0
new_human.g_eyes = 0
Expand Down

0 comments on commit abfc4be

Please sign in to comment.