From 3f9e54703a0d3cd8a5029af1cd0d5ea451a3e484 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Fri, 3 Nov 2017 01:23:14 +0000 Subject: [PATCH] fixes character preview icon directions in ONE LINE (#32332) --- code/__HELPERS/icons.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__HELPERS/icons.dm b/code/__HELPERS/icons.dm index 554159ab22..f6ebee85fe 100644 --- a/code/__HELPERS/icons.dm +++ b/code/__HELPERS/icons.dm @@ -849,7 +849,7 @@ The _flatIcons list is a cache for generated icon files. if(A.alpha < 255) flat.Blend(rgb(255, 255, 255, A.alpha), ICON_MULTIPLY) - return icon(flat, "", SOUTH) + return icon(flat, "", curdir) /proc/getIconMask(atom/A)//By yours truly. Creates a dynamic mask for a mob/whatever. /N var/icon/alpha_mask = new(A.icon,A.icon_state)//So we want the default icon and icon state of A.