From 81fa928d4c8a8b77d1412e46eac0671f07175822 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sat, 20 Oct 2018 14:47:39 +0300 Subject: [PATCH] Fixes examine for mobs that relied on atom proc features. -Mainly affected borgs and pAIs. Maybe others idk. --- code/modules/vore/eating/living_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 0723a46d44..d993f336f0 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -611,8 +611,8 @@ set desc = "Switch sharp/fuzzy scaling for current mob." appearance_flags ^= PIXEL_SCALE -/mob/living/examine(mob/user) - . = ..() +/mob/living/examine(mob/user, distance, infix, suffix) + . = ..(user, distance, infix, suffix) if(showvoreprefs) to_chat(user, "\[Mechanical Vore Preferences\]")