Skip to content

Commit

Permalink
bugfix: rank name loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizzonium committed Aug 7, 2024
1 parent 2ae28c1 commit 3065fcd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/admin/admin_ranks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ GLOBAL_PROTECT(admin_ranks) // this shit is being protected for obvious reasons
var/list/List = splittext(line,"+")
if(!List.len) continue

var/rank = List[1]
var/rank = trim(List[1])
switch(rank)
if(null,"") continue
if("Removed") continue //Reserved
if("Удален") continue //Reserved

var/rights = 0
for(var/i=2, i<=List.len, i++)
Expand Down

0 comments on commit 3065fcd

Please sign in to comment.