From 7fdaa586898d9b5e83e8b1bb403cf30ffe909c72 Mon Sep 17 00:00:00 2001 From: Darius <5933805+LeDrascol@users.noreply.github.com> Date: Tue, 10 Jan 2023 11:23:38 +0000 Subject: [PATCH] Fix latejoin panel slot displays (#281) Fixes a redundant display of job slots on the latejoin panel, caused by non-modular edits. --- code/modules/mob/dead/new_player/new_player.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index f777540307..90d1c027cb 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -594,7 +594,7 @@ if(job in GLOB.command_positions) command_bold = " command" //Sandstorm changes - var/jobline = "[job_datum.title] ([job_datum.current_positions])" + var/jobline = "[job_datum.title]" if(job_datum in SSjob.prioritized_jobs) jobline = "[jobline]" if(client && client.prefs && client.prefs.alt_titles_preferences[job_datum.title])