-
-
Notifications
You must be signed in to change notification settings - Fork 444
/
Copy pathsort_types.dm
32 lines (32 loc) · 1.05 KB
/
sort_types.dm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#define SORT_TYPE_WASTE 0
///All unwrapped items and untagged parcels get picked up by a junction with this sortType. Usually leads to the recycler.
#define SORT_TYPE_DISPOSALS 1
#define SORT_TYPE_CARGO_BAY 2
#define SORT_TYPE_QM_OFFICE 3
#define SORT_TYPE_ENGINEERING 4
#define SORT_TYPE_CE_OFFICE 5
#define SORT_TYPE_ATMOSPHERICS 6
#define SORT_TYPE_SECURITY 7
#define SORT_TYPE_HOS_OFFICE 8
#define SORT_TYPE_MEDBAY 9
#define SORT_TYPE_CMO_OFFICE 10
#define SORT_TYPE_CHEMISTRY 11
#define SORT_TYPE_RESEARCH 12
#define SORT_TYPE_RD_OFFICE 13
#define SORT_TYPE_ROBOTICS 14
#define SORT_TYPE_HOP_OFFICE 15
#define SORT_TYPE_LIBRARY 16
#define SORT_TYPE_CHAPEL 17
#define SORT_TYPE_THEATER 18
#define SORT_TYPE_BAR 19
#define SORT_TYPE_KITCHEN 20
#define SORT_TYPE_HYDROPONICS 21
#define SORT_TYPE_JANITOR_CLOSET 22
#define SORT_TYPE_GENETICS 23
#define SORT_TYPE_EXPERIMENTOR_LAB 24
#define SORT_TYPE_TOXINS 25
#define SORT_TYPE_DORMITORIES 26
#define SORT_TYPE_VIROLOGY 27
#define SORT_TYPE_XENOBIOLOGY 28
#define SORT_TYPE_LAW_OFFICE 29
#define SORT_TYPE_DETECTIVES_OFFICE 30