From 42107cda37e8ddc8349effe22aa79f641a6b1e89 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Wed, 1 Jun 2016 23:06:10 -0400 Subject: [PATCH] Fixes CentCom IDs. --- code/game/jobs/job/special.dm | 6 ++---- code/game/objects/items/weapons/cards_ids.dm | 2 +- code/modules/vore/fluffstuff/custom_items_vr.dm | 1 + 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/code/game/jobs/job/special.dm b/code/game/jobs/job/special.dm index 87579cbcfac..cfb7c33b854 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 6d1a2eaa3dc..8883fd06ab2 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 fb27d733811..0f2c489d784 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()