From 4f09f1a4cf8ae70f7c51d75337611852b3b247b5 Mon Sep 17 00:00:00 2001 From: Verkister Date: Tue, 11 Jun 2019 17:50:32 +0300 Subject: [PATCH] Makes mechanical prefs show disabled OOC/LOOC Salt PR to rob people from their ability to conceal whether they're ignoring other players' ooc messages mechanically or out of malice and then wondering why things are going to shit and people are getting mad at them. --- code/modules/vore/eating/living_vr.dm | 5 +++++ 1 file changed, 5 insertions(+) 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"]
"