diff --git a/code/game/jobs/job/special.dm b/code/game/jobs/job/special.dm index 87579cbcfa..23b369a407 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_accesses() 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_accesses() 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/paperwork/faxmachine_vr.dm b/code/modules/paperwork/faxmachine_vr.dm new file mode 100644 index 0000000000..697ac72bce --- /dev/null +++ b/code/modules/paperwork/faxmachine_vr.dm @@ -0,0 +1,2 @@ +/obj/machinery/photocopier/faxmachine + req_one_access = list() \ No newline at end of file diff --git a/code/modules/vore/eating/belly_vr.dm b/code/modules/vore/eating/belly_vr.dm index ddc83ac908..b9502cfd74 100644 --- a/code/modules/vore/eating/belly_vr.dm +++ b/code/modules/vore/eating/belly_vr.dm @@ -278,6 +278,7 @@ // Keep IDs around, but destroy them! var/obj/item/weapon/card/id/ID = W ID.desc = "A partially digested card that has seen better days. Much of it's data has been destroyed." + ID.icon = 'icons/obj/card_vr.dmi' ID.icon_state = "digested" ID.access = list() // No access ID.forceMove(owner) 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() diff --git a/icons/obj/card_vr.dmi b/icons/obj/card_vr.dmi new file mode 100644 index 0000000000..fb9d62e019 Binary files /dev/null and b/icons/obj/card_vr.dmi differ diff --git a/vorestation.dme b/vorestation.dme index faf6232251..39185824ba 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1641,6 +1641,7 @@ #include "code\modules\paperwork\carbonpaper.dm" #include "code\modules\paperwork\clipboard.dm" #include "code\modules\paperwork\faxmachine.dm" +#include "code\modules\paperwork\faxmachine_vr.dm" #include "code\modules\paperwork\filingcabinet.dm" #include "code\modules\paperwork\folders.dm" #include "code\modules\paperwork\handlabeler.dm"