Fixes compile error

This commit is contained in:
Unknown
2020-05-03 10:57:17 -04:00
parent 7e475693a9
commit 3f61b3362d

View File

@@ -236,13 +236,13 @@
var/turf/S = get_step(src, SOUTH)
var/turf/E = get_step(src, EAST)
var/turf/W = get_step(src, WEST)
if(istype(N, /turf/simulated/floor)) && !locate(/obj/effect/alien) in N.contents)
if(istype(N, /turf/simulated/floor) && !locate(/obj/effect/alien) in N.contents)
add_overlay(weedImageCache[WEED_SOUTH_EDGING])
if(istype(S, /turf/simulated/floor)) && !locate(/obj/effect/alien) in S.contents)
if(istype(S, /turf/simulated/floor) && !locate(/obj/effect/alien) in S.contents)
add_overlay(weedImageCache[WEED_NORTH_EDGING])
if(istype(E, /turf/simulated/floor)) && !locate(/obj/effect/alien) in E.contents)
if(istype(E, /turf/simulated/floor) && !locate(/obj/effect/alien) in E.contents)
add_overlay(weedImageCache[WEED_WEST_EDGING])
if(istype(W, /turf/simulated/floor)) && !locate(/obj/effect/alien) in W.contents)
if(istype(W, /turf/simulated/floor) && !locate(/obj/effect/alien) in W.contents)
add_overlay(weedImageCache[WEED_EAST_EDGING])
/obj/effect/alien/weeds/proc/fullUpdateWeedOverlays()