Files
vgstation13/__DEFINES/flags.dm
13spacemen 300cf616f5 Lambo Bloody Item Overlays (#36395)
* bloody item overlays use mutable appearances instead of icon cache

* lazylists
2024-05-03 22:04:48 -05:00

9 lines
304 B
Plaintext

//setter for KEEP_TOGETHER to allow for multiple sources to set and unset it
#define ADD_KEEP_TOGETHER(x, source)\
LAZYADD(x.keep_together_sources, source);\
x.update_keep_together()
#define REMOVE_KEEP_TOGETHER(x, source)\
LAZYREMOVE(x.keep_together_sources, source);\
x.update_keep_together()