Fixes editing colony director IDs editing global 'station access' list

This commit is contained in:
Heroman
2019-08-28 19:02:35 +10:00
parent 2aaf17835c
commit daadfd6a72
5 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -282,11 +282,11 @@
var/obj/item/device/pda/pda = H.wear_id
id = pda.id
id.icon_state = "gold"
id.access = get_all_accesses()
id.access = get_all_accesses().Copy()
else
var/obj/item/weapon/card/id/id = new/obj/item/weapon/card/id(M);
id.icon_state = "gold"
id.access = get_all_accesses()
id.access = get_all_accesses().Copy()
id.registered_name = H.real_name
id.assignment = "Colony Director"
id.name = "[id.registered_name]'s ID Card ([id.assignment])"