Merge pull request #11351 from Core0verload/nodirt

Removes dirt from walking on tiles
This commit is contained in:
Aranclanos
2015-08-26 06:27:31 -03:00
9 changed files with 0 additions and 38 deletions
-1
View File
@@ -66,7 +66,6 @@
color = "#aa77aa"
icon_state = "vinefloor"
broken_states = list()
ignoredirt = 1
//All of this shit is useless for vines
-1
View File
@@ -509,7 +509,6 @@ var/global/list/rockTurfEdgeCache
icon_state = "asteroid"
icon_plating = "asteroid"
var/dug = 0 //0 = has not yet been dug, 1 = has already been dug
ignoredirt = 1
/turf/simulated/floor/plating/asteroid/airless
oxygen = 0.01
@@ -862,9 +862,6 @@
var/turf/tile = loc
if(isturf(tile))
tile.clean_blood()
if (istype(tile, /turf/simulated/floor))
var/turf/simulated/floor/F = tile
F.dirt = 0
for(var/A in tile)
if(istype(A, /obj/effect))
if(is_cleanable(A))
@@ -646,10 +646,6 @@
for(var/mob/living/simple_animal/slime/M in T)
M.adjustToxLoss(rand(5,10))
if(istype(T, /turf/simulated/floor))
var/turf/simulated/floor/F = T
if(reac_volume >= 1)
F.dirt = 0
/datum/reagent/space_cleaner/reaction_mob(mob/M, method=TOUCH, reac_volume)
if(method == TOUCH || VAPOR)