mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 07:46:20 +00:00
* Reworks Duffel Bags (Zippers) * Update backpack.dm * Duiffel Spotfix * error fixes * Update backpack.dm * Update code/modules/antagonists/cult/cult.dm * Update backpack.dm --------- Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> Co-authored-by: lessthanthree <83487515+lessthnthree@users.noreply.github.com>
25 lines
661 B
Plaintext
25 lines
661 B
Plaintext
// Storage component defines
|
|
|
|
// Storage collection defines
|
|
#define COLLECT_ONE 0
|
|
#define COLLECT_EVERYTHING 1
|
|
#define COLLECT_SAME 2
|
|
|
|
// Drop style defines
|
|
#define DROP_NOTHING 0
|
|
#define DROP_AT_PARENT 1
|
|
#define DROP_AT_LOCATION 2
|
|
|
|
// Defines for fancy boxes (ie. boxes that display how many items there are
|
|
// inside of them)
|
|
#define FANCY_CONTAINER_CLOSED 0
|
|
#define FANCY_CONTAINER_OPEN 1
|
|
#define FANCY_CONTAINER_ALWAYS_OPEN 2
|
|
|
|
// Defines for levels of storage locking
|
|
// Also used fort the force param of can_insert
|
|
// Higher values are "more" locked then lower ones
|
|
#define STORAGE_NOT_LOCKED 0
|
|
#define STORAGE_SOFT_LOCKED 1
|
|
#define STORAGE_FULLY_LOCKED 2
|