diff --git a/code/_onclick/hud/parallax.dm b/code/_onclick/hud/parallax.dm index a61513181fa..0d602717479 100755 --- a/code/_onclick/hud/parallax.dm +++ b/code/_onclick/hud/parallax.dm @@ -54,11 +54,7 @@ var/client/C = screenmob.client // Default to HIGH - var/parallax_selection = PARALLAX_HIGH - if(C.prefs) - parallax_selection = C.prefs.read_preference(/datum/preference/choiced/parallax) - if (!parallax_selection) - parallax_selection = PARALLAX_HIGH + var/parallax_selection = C?.prefs.read_preference(/datum/preference/choiced/parallax) || PARALLAX_HIGH switch(parallax_selection) if (PARALLAX_INSANE)