From 2c8c4a2327264792c3dddba6e1691dd2d7b22d2e Mon Sep 17 00:00:00 2001 From: Neerti Date: Tue, 24 Feb 2015 07:42:06 -0500 Subject: [PATCH] Fixes some misc examine bugs. --- code/modules/examine/examine.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/examine/examine.dm b/code/modules/examine/examine.dm index 4e5539c0c5..392f897c68 100644 --- a/code/modules/examine/examine.dm +++ b/code/modules/examine/examine.dm @@ -11,8 +11,8 @@ var/description_fluff = null //Green text about the atom's fluff, if any exists. var/description_antag = null //Malicious red text, for the antags. -/atom/examine(mob/user) - ..() +/atom/examine(mob/user, var/distance = -1, var/infix = "", var/suffix = "") + . = ..() user.description_holders["info"] = get_description_info() user.description_holders["fluff"] = get_description_fluff() if(user.mind && user.mind.special_role || isobserver(user)) //Runtime prevention, as ghosts don't have minds.