From 06fce40d3474bd92351759225e54ef94ad16eb72 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Thu, 19 Jan 2012 01:54:48 -0500 Subject: [PATCH] herped the mark datum thing --- code/modules/admin/verbs/debug.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index d407a11db8c..2c41de82475 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -157,7 +157,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that argL.Add( input("Pick file:","File",null) as file ) if("marked datum") - argL.Add(usr.client.holder.marked_datum) + argL.Add(holder.marked_datum) usr << "\blue Calling '[procname]'" returnval = call(procname)(arglist(argL)) @@ -209,7 +209,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that argL.Add( input("Pick file:","File",null) as file ) if("marked datum") - argL.Add(usr.client.holder.marked_datum) + argL.Add(holder.marked_datum) usr << "\blue Calling '[procname]' on '[target]'" returnval = call(target,procname)(arglist(argL))