From 77a1589f757ed3f95a60ce5a7f10647bf2e975e1 Mon Sep 17 00:00:00 2001 From: Kyep Date: Fri, 11 Jan 2019 18:32:15 -0800 Subject: [PATCH] removes %s --- code/game/jobs/job_exp.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/game/jobs/job_exp.dm b/code/game/jobs/job_exp.dm index 81fed448594..82c170a1997 100644 --- a/code/game/jobs/job_exp.dm +++ b/code/game/jobs/job_exp.dm @@ -176,10 +176,7 @@ var/global/list/role_playtime_requirements = list( if(dep == EXP_TYPE_EXEMPT) return_text += "
  • Exempt (all jobs auto-unlocked)
  • " else if(exp_data[EXP_TYPE_LIVING] > 0) - var/my_pc = num2text(round(exp_data[dep]/exp_data[EXP_TYPE_LIVING]*100)) - return_text += "
  • [dep]: [get_exp_format(exp_data[dep])] ([my_pc]%)
  • " - else - return_text += "
  • [dep]: [get_exp_format(exp_data[dep])]
  • " + return_text += "
  • [dep]: [get_exp_format(exp_data[dep])]
  • " if(config.use_exp_restrictions_admin_bypass && check_rights(R_ADMIN, 0, mob)) return_text += "
  • Admin
  • " return_text += ""