diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm
index 53b7a4d9eda..94308a0f22d 100644
--- a/code/modules/vore/eating/living_vr.dm
+++ b/code/modules/vore/eating/living_vr.dm
@@ -667,6 +667,11 @@
if(!user)
CRASH("display_voreprefs() was called without an associated user.")
var/dispvoreprefs = "[src]'s vore preferences
"
+ if(client && client.prefs)
+ if("CHAT_OOC" in client.prefs.preferences_disabled)
+ dispvoreprefs += "OOC DISABLED
"
+ if("CHAT_LOOC" in client.prefs.preferences_disabled)
+ dispvoreprefs += "LOOC DISABLED
"
dispvoreprefs += "Digestable: [digestable ? "Enabled" : "Disabled"]
"
dispvoreprefs += "Leaves Remains: [digest_leave_remains ? "Enabled" : "Disabled"]
"
dispvoreprefs += "Mob Vore: [allowmobvore ? "Enabled" : "Disabled"]
"