From d27576f93adc17cc0acd54fbb2a2711157279e71 Mon Sep 17 00:00:00 2001 From: Cooeen Date: Sat, 7 Sep 2024 09:23:02 +0200 Subject: [PATCH] Fixed BYOND v515.1643 to not compile --- code/datums/mutable_appearance.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/datums/mutable_appearance.dm b/code/datums/mutable_appearance.dm index 1b095c555..e1fbd9015 100644 --- a/code/datums/mutable_appearance.dm +++ b/code/datums/mutable_appearance.dm @@ -4,10 +4,13 @@ // Mutable appearances are children of images, just so you know. +// causing BYOND v515.1643 to not compile, does not seem to do anything but define what is already defined below in proc anyway. +/* /mutable_appearance/New() ..() plane = FLOAT_PLANE // No clue why this is 0 by default yet images are on FLOAT_PLANE // And yes this does have to be in the constructor, BYOND ignores it if you set it as a normal var +*/ // Helper similar to image() /proc/mutable_appearance(icon, icon_state = "", layer = FLOAT_LAYER, plane = FLOAT_PLANE)