diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm
index 4618bb536df..2a273eaab16 100644
--- a/code/_helpers/global_lists_vr.dm
+++ b/code/_helpers/global_lists_vr.dm
@@ -121,6 +121,7 @@ var/global/list/tf_vore_egg_types = list(
"Xenomorph" = /obj/structure/closet/secure_closet/egg/xenomorph)
var/global/list/edible_trash = list(/obj/item/broken_device,
+ /obj/item/clothing/accessory/collar, //TFF 10/7/19 - add option to nom collars,
/obj/item/clothing/mask,
/obj/item/clothing/glasses,
/obj/item/clothing/gloves,
diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm
index 767ffc3fa54..8e360dfca55 100644
--- a/code/modules/vore/eating/living_vr.dm
+++ b/code/modules/vore/eating/living_vr.dm
@@ -641,6 +641,10 @@
to_chat(src, "You can taste the flavor of garbage and leftovers. Delicious?")
else
to_chat(src, "You can taste the flavor of gluttonous waste of food.")
+ //TFF 10/7/19 - Add custom flavour for collars for trash can trait.
+ else if (istype(I,/obj/item/clothing/accessory/collar))
+ visible_message("[src] demonstrates their voracious capabilities by swallowing [I] whole!")
+ to_chat(src, "You can taste the submissiveness in the wearer of [I]!")
else
to_chat(src, "You can taste the flavor of garbage. Delicious.")
return