From c9502441289eead884c38decc7c5877f2fc84a5d Mon Sep 17 00:00:00 2001 From: Sun-Soaked <45698967+MemedHams@users.noreply.github.com> Date: Wed, 27 Sep 2023 13:39:29 -0400 Subject: [PATCH] screaming --- code/__DEFINES/storage.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/__DEFINES/storage.dm b/code/__DEFINES/storage.dm index 0e33b51a94ee..169c9c4119cb 100644 --- a/code/__DEFINES/storage.dm +++ b/code/__DEFINES/storage.dm @@ -2,16 +2,16 @@ // Storage limits. These can be combined (and usually are combined). /// Check max_items and contents.len when trying to insert -#define STORAGE_LIMIT_MAX_ITEMS(1<<0) +#define STORAGE_LIMIT_MAX_ITEMS (1<<0) /// Check max_combined_w_class. -#define STORAGE_LIMIT_COMBINED_W_CLASS(1<<1) +#define STORAGE_LIMIT_COMBINED_W_CLASS (1<<1) /// Use the new volume system. Will automatically force rendering to use the new volume/baystation scaling UI so this is kind of incompatible with stuff like stack storage etc etc. -#define STORAGE_LIMIT_VOLUME(1<<2) +#define STORAGE_LIMIT_VOLUME (1<<2) /// Use max_w_class -#define STORAGE_LIMIT_MAX_W_CLASS(1<<3) +#define STORAGE_LIMIT_MAX_W_CLASS (1<<3) -#define STORAGE_FLAGS_LEGACY_DEFAULT(STORAGE_LIMIT_MAX_ITEMS | STORAGE_LIMIT_COMBINED_W_CLASS | STORAGE_LIMIT_MAX_W_CLASS) -#define STORAGE_FLAGS_VOLUME_DEFAULT(STORAGE_LIMIT_VOLUME | STORAGE_LIMIT_MAX_W_CLASS) +#define STORAGE_FLAGS_LEGACY_DEFAULT (STORAGE_LIMIT_MAX_ITEMS | STORAGE_LIMIT_COMBINED_W_CLASS | STORAGE_LIMIT_MAX_W_CLASS) +#define STORAGE_FLAGS_VOLUME_DEFAULT (STORAGE_LIMIT_VOLUME | STORAGE_LIMIT_MAX_W_CLASS) // UI defines /// Size of volumetric box icon