From d7b5ad80a6b0f2b71da2fc32db62037ce4fce704 Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Mon, 20 Apr 2015 21:54:08 +0100 Subject: [PATCH] When you replace code, you're supposed to remove the old code - Derpfix. --- code/modules/mob/living/ventcrawling.dm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/modules/mob/living/ventcrawling.dm b/code/modules/mob/living/ventcrawling.dm index 2ddb24b45a5..613f3a8ec02 100644 --- a/code/modules/mob/living/ventcrawling.dm +++ b/code/modules/mob/living/ventcrawling.dm @@ -21,11 +21,6 @@ var/list/ventcrawl_machinery = list(/obj/machinery/atmospherics/unary/vent_pump, if(!istype(vent_found) || !vent_found.can_crawl_through()) vent_found = null - - var/obj/machinery/atmospherics/unary/V = A - if(istype(V) && (!V.welded))//Not welded - vent_found = V - if(!vent_found) for(var/obj/machinery/atmospherics/machine in range(1,src)) if(is_type_in_list(machine, ventcrawl_machinery))