Skip to content

Commit

Permalink
rcd and rpd upgrade defines to bitflags (#11425)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperPantsHero authored Sep 8, 2024
1 parent 37653f9 commit 80357da
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/__DEFINES/construction.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 80357da

Please sign in to comment.