mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 23:27:34 +01:00
Merge pull request #12425 from bgobandit/revbug
Hopefully fixes the heads of staff names appearing multiple times rev bug
This commit is contained in:
@@ -401,7 +401,7 @@
|
||||
var/list/heads = list()
|
||||
for(var/mob/living/carbon/human/player in mob_list)
|
||||
if(player.stat!=2 && player.mind && (player.mind.assigned_role in command_positions))
|
||||
heads += player.mind
|
||||
heads |= player.mind
|
||||
return heads
|
||||
|
||||
|
||||
@@ -412,7 +412,7 @@
|
||||
var/list/heads = list()
|
||||
for(var/mob/player in mob_list)
|
||||
if(player.mind && (player.mind.assigned_role in command_positions))
|
||||
heads += player.mind
|
||||
heads |= player.mind
|
||||
return heads
|
||||
|
||||
//////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user