From f8755f2de5c1607cfc3a54137a29f637f215c4e0 Mon Sep 17 00:00:00 2001 From: Leshana Date: Mon, 6 Apr 2020 16:10:07 -0400 Subject: [PATCH] Fix openspace redering of under-objects that have no main icon (only over/underlays) In particular stops manifolds from getting the openspace "map" icon state as its main icon instead of null. --- code/modules/multiz/turf.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/multiz/turf.dm b/code/modules/multiz/turf.dm index 5ce3a0e3bc..8a260647b2 100644 --- a/code/modules/multiz/turf.dm +++ b/code/modules/multiz/turf.dm @@ -96,6 +96,8 @@ if(O.invisibility) continue // Ignore objects that have any form of invisibility if(O.loc != below) continue // Ignore multi-turf objects not directly below var/image/temp2 = image(O, dir = O.dir, layer = O.layer) + if(temp2.icon == null) + temp2.icon_state = null temp2.plane = src.plane temp2.color = O.color temp2.overlays += O.overlays