From 0e0c69263447f4c9de8c17008d9c6a856bc1afb5 Mon Sep 17 00:00:00 2001 From: Ccomp5950 Date: Tue, 10 Jun 2014 19:56:02 -0500 Subject: [PATCH] Removed debugverb --- code/modules/admin/admin.dm | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index d494e52391c..48bec4880d6 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -1103,13 +1103,6 @@ var/global/floorIsLava = 0 /* helper proc to test if someone is a mentor or not. Got tired of writing this same check all over the place. */ -/client/verb/check_mentor() - set category = "Admin" - set name = "Test ur shit" - set desc = "This shouldn't be here" - - src << is_mentor() - /proc/is_mentor(client/C) if(!istype(C)) @@ -1158,7 +1151,7 @@ var/global/floorIsLava = 0 var/admin_shuttle_location = 0 // 0 = centcom 13, 1 = station -/proc/move_admin_shuttle() +proc/move_admin_shuttle() var/area/fromArea var/area/toArea if (admin_shuttle_location == 1) @@ -1178,7 +1171,7 @@ var/admin_shuttle_location = 0 // 0 = centcom 13, 1 = station var/ferry_location = 0 // 0 = centcom , 1 = station -/proc/move_ferry() +proc/move_ferry() var/area/fromArea var/area/toArea if (ferry_location == 1) @@ -1198,7 +1191,7 @@ var/ferry_location = 0 // 0 = centcom , 1 = station var/alien_ship_location = 1 // 0 = base , 1 = mine -/proc/move_alien_ship() +proc/move_alien_ship() var/area/fromArea var/area/toArea if (alien_ship_location == 1)