mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Fixes compile error
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user