From 80357da1850c0d97a32b81e244bf0eea79e61d5e Mon Sep 17 00:00:00 2001 From: SuperPantsHero <98481852+SuperPantsHero@users.noreply.github.com> Date: Sun, 8 Sep 2024 16:39:37 +0200 Subject: [PATCH] rcd and rpd upgrade defines to bitflags (#11425) --- code/__DEFINES/construction.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm index afca149e46d0d..4d22480a84140 100644 --- a/code/__DEFINES/construction.dm +++ b/code/__DEFINES/construction.dm @@ -118,12 +118,12 @@ #define RCD_FURNISHING 6 #define RCD_LADDER 7 -#define RCD_UPGRADE_FRAMES 0 -#define RCD_UPGRADE_SIMPLE_CIRCUITS 1 -#define RCD_UPGRADE_SILO_LINK 2 -#define RCD_UPGRADE_FURNISHING 3 +#define RCD_UPGRADE_FRAMES (1<<0) +#define RCD_UPGRADE_SIMPLE_CIRCUITS (1<<1) +#define RCD_UPGRADE_SILO_LINK (1<<2) +#define RCD_UPGRADE_FURNISHING (1<<3) -#define RPD_UPGRADE_UNWRENCH 0 +#define RPD_UPGRADE_UNWRENCH (1<<0) #define RCD_WINDOW_FULLTILE "full tile" #define RCD_WINDOW_DIRECTIONAL "directional"