Skip to content

Commit

Permalink
fix compilation error (#1112)
Browse files Browse the repository at this point in the history
## Что этот PR делает

Исправляет ошибку компиляции

## Summary by Sourcery

Bug Fixes:
- Fix compilation error in rock_color macro.
  • Loading branch information
Gaxeer authored Jan 31, 2025
1 parent ce3ed09 commit e9c151e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modular_bandastation/aesthetics/walls/code/rocks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit e9c151e

Please sign in to comment.