From e9c151ee16f96ed023d6e8b50faa2762023c9a83 Mon Sep 17 00:00:00 2001 From: Gaxeer <44334376+Gaxeer@users.noreply.github.com> Date: Fri, 31 Jan 2025 22:27:54 +0200 Subject: [PATCH] fix compilation error (#1112) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Что этот PR делает Исправляет ошибку компиляции ## Summary by Sourcery Bug Fixes: - Fix compilation error in rock_color macro. --- modular_bandastation/aesthetics/walls/code/rocks.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_bandastation/aesthetics/walls/code/rocks.dm b/modular_bandastation/aesthetics/walls/code/rocks.dm index e88121bc75875..64164cd330644 100644 --- a/modular_bandastation/aesthetics/walls/code/rocks.dm +++ b/modular_bandastation/aesthetics/walls/code/rocks.dm @@ -3,8 +3,8 @@ #define DEFAULT_ROCKS 'modular_bandastation/aesthetics/walls/icons/rocks/default_rocks.dmi' #define MAPPING_ROCKS 'modular_bandastation/aesthetics/walls/icons/rocks/mapping_rocks.dmi' -#define rock_color(color) MAP_SWITCH(color,"") -#define rock_icon_state(state) MAP_SWITCH("smoothrocks-0",state) +#define rock_color(color) MAP_SWITCH(color, null) +#define rock_icon_state(state) MAP_SWITCH("smoothrocks-0", state) #define ROCK_COLOR "#464646" #define ROCK_COLOR_RED "#861313" #define ROCK_COLOR_ICE "#cde2e4"