diff --git a/code/modules/vore/fluffstuff/custom_boxes_vr.dm b/code/modules/vore/fluffstuff/custom_boxes_vr.dm
index 03c11019af..81da5283c4 100644
--- a/code/modules/vore/fluffstuff/custom_boxes_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_boxes_vr.dm
@@ -91,7 +91,7 @@
new /obj/item/clothing/accessory/holster/hip(src)
new /obj/item/clothing/suit/storage/fluff/modernfedcoat(src)
new /obj/item/clothing/head/caphat/formal/fedcover(src)
- new /obj/item/weapon/card/id/centcom/fluff/joanbadge(src)
+ new /obj/item/weapon/card/id/centcom/station/fluff/joanbadge(src)
new /obj/item/weapon/gun/energy/gun/fluff/dominator(src)
new /obj/item/clothing/suit/armor/det_suit(src)
new /obj/item/clothing/accessory/permit/gun/fluff/joanrisu(src)
@@ -172,7 +172,7 @@
New()
..() //Might look like a lot... but all small items.
//Centcom stuff and permit
- new /obj/item/weapon/card/id/centcom/fluff/aronai(src)
+ new /obj/item/weapon/card/id/centcom/station/fluff/aronai(src)
new /obj/item/clothing/accessory/permit/gun/fluff/aronai_kadigan(src)
//Gun and holster
new /obj/item/weapon/gun/projectile/nsfw(src)
diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm
index ddbb83a1a0..229087f798 100644
--- a/code/modules/vore/fluffstuff/custom_items_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_items_vr.dm
@@ -128,7 +128,7 @@
attack_verb = list("attacked", "hammered", "smashed", "slammed", "crushed")
//JoanRisu:Joan Risu
-/obj/item/weapon/card/id/centcom/fluff/joanbadge
+/obj/item/weapon/card/id/centcom/station/fluff/joanbadge
name = "Faded Badge"
desc = "A faded badge, backed with leather, that reads 'NT Security Force' across the front."
icon = 'icons/vore/custom_items_vr.dmi'
@@ -137,11 +137,11 @@
assignment = "Centcom Officer"
-/obj/item/weapon/card/id/centcom/fluff/joanbadge/attack_self(mob/user as mob)
+/obj/item/weapon/card/id/centcom/station/fluff/joanbadge/attack_self(mob/user as mob)
if(isliving(user))
user.visible_message("[user] flashes their golden security badge.\nIt reads:NT Security.","You display the faded badge.\nIt reads: NT Security.")
-/obj/item/weapon/card/id/centcom/fluff/joanbadge/attack(mob/living/carbon/human/M, mob/living/user)
+/obj/item/weapon/card/id/centcom/station/fluff/joanbadge/attack(mob/living/carbon/human/M, mob/living/user)
if(isliving(user))
user.visible_message("[user] invades [M]'s personal space, thrusting [src] into their face insistently.","You invade [M]'s personal space, thrusting [src] into their face insistently.")
@@ -316,12 +316,12 @@
return
//arokha:Aronai Kadigan - Centcom ID (Medical dept)
-/obj/item/weapon/card/id/centcom/fluff/aronai
+/obj/item/weapon/card/id/centcom/station/fluff/aronai
registered_name = "CONFIGURE ME"
assignment = "CC Medical"
var/configured = 0
-/obj/item/weapon/card/id/centcom/fluff/aronai/attack_self(mob/user as mob)
+/obj/item/weapon/card/id/centcom/station/fluff/aronai/attack_self(mob/user as mob)
if(configured)
return ..()