From 59f1d4f3ec1d107395ac5d067c8558f6ad974cce Mon Sep 17 00:00:00 2001 From: Erki Date: Sat, 7 Apr 2018 18:00:48 +0300 Subject: [PATCH] Fixes #4547 (#4550) --- code/modules/mob/abstract/new_player/new_player.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/abstract/new_player/new_player.dm b/code/modules/mob/abstract/new_player/new_player.dm index 70f440f6c4c..980bf896327 100644 --- a/code/modules/mob/abstract/new_player/new_player.dm +++ b/code/modules/mob/abstract/new_player/new_player.dm @@ -431,10 +431,9 @@ INITIALIZE_IMMEDIATE(/mob/abstract/new_player) new_character.dna.ready_dna(new_character) new_character.dna.b_type = client.prefs.b_type new_character.sync_organ_dna() - if(client.prefs.disabilities) + if(client.prefs.disabilities & NEARSIGHTED) // Set defer to 1 if you add more crap here so it only recalculates struc_enzymes once. - N3X new_character.dna.SetSEState(GLASSESBLOCK,1,0) - new_character.disabilities |= NEARSIGHTED // And uncomment this, too. //new_character.dna.UpdateSE()