Merge pull request #9719 from SamHPurp/smoothing-improvements

Icon Smoothing to StonedMC
This commit is contained in:
variableundefined
2018-10-21 07:41:47 +08:00
committed by GitHub
16 changed files with 117 additions and 65 deletions
+2 -2
View File
@@ -17,11 +17,11 @@ var/global/list/potentialRandomZlevels = generateMapList(filename = "config/away
log_debug("Smoothing tiles")
for(var/turf/T in smoothTurfs)
if(T.smooth)
smooth_icon(T)
queue_smooth(T)
for(var/R in T)
var/atom/A = R
if(A.smooth)
smooth_icon(A)
queue_smooth(A)
if(istype(T, /turf/simulated/mineral)) // For the listening post, among other maps
var/turf/simulated/mineral/MT = T
MT.add_edges()