Running tests and cleaning out useless debug verbs/procs.

This commit is contained in:
ZomgPonies
2014-07-13 05:32:40 -04:00
parent 36754fb1dc
commit 92940e1c00
15 changed files with 54 additions and 248 deletions
+3 -1
View File
@@ -4,4 +4,6 @@
icon = 'icons/obj/stationobjs.dmi'
icon_state = "snowman"
anchored = 1
density = 1
density = 1
/obj/structure/poopiepants
-3
View File
@@ -21,9 +21,6 @@
tracks.AddTracks(mob,bloodDNA,comingdir,goingdir,typepath)
/turf/simulated/Entered(atom/A, atom/OL)
if(movement_disabled && usr.ckey != movement_disabled_exception)
usr << "\red Movement is admin-disabled." //This is to identify lag problems
return
if (istype(A,/mob/living/carbon))
var/mob/living/carbon/M = A
-3
View File
@@ -72,9 +72,6 @@
// Ported from unstable r355
/turf/space/Entered(atom/movable/A as mob|obj)
if(movement_disabled)
usr << "\red Movement is admin-disabled." //This is to identify lag problems
return
..()
if ((!(A) || src != A.loc)) return
-6
View File
@@ -51,9 +51,6 @@
return 0
/turf/Enter(atom/movable/mover as mob|obj, atom/forget as mob|obj|turf|area)
if(movement_disabled && usr.ckey != movement_disabled_exception)
usr << "\red Movement is admin-disabled." //This is to identify lag problems
return
if (!mover)
return 1
@@ -90,9 +87,6 @@
/turf/Entered(atom/atom as mob|obj)
if(movement_disabled)
usr << "\red Movement is admin-disabled." //This is to identify lag problems
return
..()
//vvvvv Infared beam stuff vvvvv
-8
View File
@@ -5,10 +5,6 @@ var/global/normal_ooc_colour = "#002eb8"
set name = "OOC" //Gave this shit a shorter name so you only have to time out "ooc" rather than "ooc message" to use it --NeoFite
set category = "OOC"
if(say_disabled) //This is here to try to identify lag problems
usr << "\red Speech is currently admin-disabled."
return
if(!mob) return
if(IsGuestKey(key))
src << "Guests may not use OOC."
@@ -91,10 +87,6 @@ var/global/normal_ooc_colour = "#002eb8"
set desc = "Local OOC, seen only by those in view."
set category = "OOC"
if(say_disabled) //This is here to try to identify lag problems
usr << "\red Speech is currently admin-disabled."
return
if(!mob) return
if(IsGuestKey(key))
src << "Guests may not use OOC."