diff --git a/modular_zubbers/code/modules/job_estimation/code/dead.dm b/modular_zubbers/code/modules/job_estimation/code/dead.dm index e159d88e45f..0293239ed4b 100644 --- a/modular_zubbers/code/modules/job_estimation/code/dead.dm +++ b/modular_zubbers/code/modules/job_estimation/code/dead.dm @@ -37,7 +37,7 @@ var/datum/job/J = prefs?.get_highest_priority_job() var/title = J?.title //If a player does not have preferences (for some reason) or they don't want to be shown on the panel, continue - if(!J || (prefs.read_preference(/datum/preference/toggle/ready_job))) + if(!J || !(prefs.read_preference(/datum/preference/toggle/ready_job))) continue //If the readied player has selected a miscellaneous job (Assistant, or Prisoner), they shouldn't be displayed if(title == JOB_ASSISTANT || title == JOB_PRISONER)