Gets rid of manual overlay manipulation

This commit is contained in:
tortellinitony
2017-09-06 23:39:08 -05:00
committed by CitadelStationBot
parent 5829f56727
commit d73b82cf11
6 changed files with 799 additions and 6 deletions
+2 -2
View File
@@ -524,12 +524,12 @@
/turf/proc/photograph(limit=20)
var/image/I = new()
I.overlays += src
I.add_overlay(src)
for(var/V in contents)
var/atom/A = V
if(A.invisibility)
continue
I.overlays += A
I.add_overlay(A)
if(limit)
limit--
else