From 0d65e4657b4686a5e721502a041f507445b21b08 Mon Sep 17 00:00:00 2001 From: Miniature Date: Fri, 6 Jan 2012 02:52:15 +1030 Subject: [PATCH] Now you don't need to call a proc when you use proccall(bs12) (leave it blank, i can't remember the way to add a cancel button) --- code/modules/admin/verbs/debug.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 699facbd3de..aac7c075492 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -173,6 +173,8 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that var/returnval = null var/procname = input("Procpath (e.g. just \"update\" for lights)","path:", null) + if(procname == "") return + var/argNum = input("Number of arguments:","Number",null) as num //input("Arguments","Arguments:", null) var/list/argL = new/list()