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 += ""