From 02474a04e0bacd3ca394dee38b95be7410e06832 Mon Sep 17 00:00:00 2001 From: "baloh.matevz" Date: Tue, 12 Jun 2012 04:48:40 +0000 Subject: [PATCH] - Forgot to remove some world << "" debug outputs. Removed them now. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3801 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/screen.dm | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/code/modules/mob/screen.dm b/code/modules/mob/screen.dm index 5e9a132f717..cd7b9c32686 100644 --- a/code/modules/mob/screen.dm +++ b/code/modules/mob/screen.dm @@ -548,11 +548,9 @@ if(usr.next_move > world.time) return usr.next_move = world.time + 20 - world << "pass0" //resisting grabs (as if it helps anyone...) if ((!( usr.stat ) && usr.canmove && !( usr.restrained() ))) - world << "area1" var/resisting = 0 for(var/obj/O in usr.requests) del(O) @@ -581,7 +579,6 @@ //breaking out of handcuffs if(usr:handcuffed && usr:canmove && (usr.last_special <= world.time)) - world << "area2" usr.next_move = world.time + 100 usr.last_special = world.time + 100 if(isalienadult(usr) || (HULK in usr.mutations) || (SUPRSTR in usr.augmentations))//Don't want to do a lot of logic gating here. @@ -619,7 +616,6 @@ //unbuckling yourself else if(usr:handcuffed && (usr.last_special <= world.time) && usr:buckled) - world << "area3" usr.next_move = world.time + 100 usr.last_special = world.time + 100 usr << "\red You attempt to unbuckle yourself. (This will take around 2 minutes and you need to stand still)" @@ -634,9 +630,7 @@ usr << "\blue You successfully unbuckle yourself." usr:buckled.manual_unbuckle(usr) else if( src.loc && (istype(src.loc, /obj/structure/closet)) ) - world << "area4" var/obj/structure/closet/C = usr.loc - world << "pass1" if(C.opened) return //Door's open... wait, why are you in it's contents then? if(istype(usr.loc, /obj/structure/closet/secure_closet)) @@ -646,7 +640,6 @@ else if(!C.welded) return //closed but not welded... - world << "pass2" //okay, so the closet is either welded or locked... resist!!! usr.next_move = world.time + 100 @@ -656,7 +649,6 @@ O.show_message("\red The [usr.loc] begins to shake violently!", 1) spawn(0) if(do_after(usr, 50)) - world << "pass3" if(!C || !usr || usr.loc != C || C.opened) //User, closet destroyed OR user no longer in closet OR closet opened return @@ -668,7 +660,6 @@ else if(!C.welded) return - world << "pass4" //Well then break it! if(istype(usr.loc, /obj/structure/closet/secure_closet)) @@ -690,6 +681,4 @@ usr << "\red You successfully break out!" for(var/mob/O in viewers(usr.loc)) O.show_message("\red \the [usr] successfully broke out of \the [C]!", 1) - C.open() - world << "pass5" - world << "area5" \ No newline at end of file + C.open() \ No newline at end of file