From 13c153bbda978c38c68c94a30d3d453ef3cae1a8 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Sat, 14 Aug 2021 22:22:46 -0700 Subject: [PATCH] Bandaid fix for inexplicably missing staff titles I think we are having database issues, or it seems to not be wanting to read from admin_ranks.txt. This is a bandaid fix by adding the titles to the else statement. Other workaround is just to edit database manually. --- code/modules/admin/topic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 2850c0b89c..a969ba6b80 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -143,7 +143,7 @@ if(admin_ranks.len) new_rank = tgui_input_list(usr, "Please select a rank", "New rank", (admin_ranks|"*New Rank*")) else - new_rank = tgui_input_list(usr, "Please select a rank", "New rank", list("Game Master","Game Admin", "Trial Admin", "Admin Observer","*New Rank*")) + new_rank = tgui_input_list(usr, "Please select a rank", "New rank", list("Game Master","Head Admin","Game Admin", "Trial Admin", "Admin Observer","Moderator","Mentor","Badmin","Retired Admin","Event Manager","Developer","DevMod","*New Rank*")) //CHOMP Edit bandaid fix to assigning titles because we're having some funky database issues, I think. Other option is to manually edit database entry for someone's title. var/rights = 0 if(D)