diff --git a/code/game/jobs/job/special.dm b/code/game/jobs/job/special.dm index 87579cbcfa..cfb7c33b85 100644 --- a/code/game/jobs/job/special.dm +++ b/code/game/jobs/job/special.dm @@ -37,8 +37,7 @@ return 1 get_access() - var/access = get_all_station_access() - access += list("VIP Guest","Custodian","Thunderdome Overseer","Intel Officer","Medical Officer","Death Commando","Research Officer") + var/access = get_all_access() return access /datum/job/centcom_visitor //For Pleasure @@ -80,8 +79,7 @@ return 1 get_access() - var/access = get_all_station_access() - access += list("VIP Guest","Custodian","Thunderdome Overseer","Intel Officer","Medical Officer","Death Commando","Research Officer") + var/access = get_all_access() return access /datum/job/clown diff --git a/code/game/objects/items/weapons/cards_ids.dm b/code/game/objects/items/weapons/cards_ids.dm index 6d1a2eaa3d..8883fd06ab 100644 --- a/code/game/objects/items/weapons/cards_ids.dm +++ b/code/game/objects/items/weapons/cards_ids.dm @@ -252,7 +252,7 @@ registered_name = "Central Command" assignment = "General" New() - access = get_all_centcom_access() + access = get_all_accesses() ..() /obj/item/weapon/card/id/centcom/ERT diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index fb27d73381..0f2c489d78 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -244,4 +244,5 @@ assignment = "CC Medical" New() + ..() update_name()