From 18ad19d3cfd52a8f051cd2a3aa7583997adeb901 Mon Sep 17 00:00:00 2001 From: "baloh.matevz" Date: Fri, 27 Jul 2012 07:51:27 +0000 Subject: [PATCH] - Me and noddie were both working on the same thing at the same time. So one of the doubled procs has to go. And since I'm making the update it's gonna be his proc that goes :3 git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4191 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/admin/admin_verbs.dm | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 28be268d113..a9e19bede74 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -828,10 +828,6 @@ /client/proc/check_ai_laws() set name = "Check AI Laws" set category = "Admin" - if(!holder) return - for(var/mob/living/silicon/ai/ai in mob_list) - usr << "[key_name(ai, usr)]'s Laws:" - if (ai.laws == null) - usr << "[key_name(ai, usr)]'s Laws are null??" - else - ai.laws.show_laws(usr) \ No newline at end of file + if(holder) + src.holder.output_ai_laws() +