Files
Darius f30815b889 Production topic restrictions rework
- Production access checks now use the `allowed` proc before attempting normal ID checks.
- Each successful return case now uses a unique DEFINE to allow future control over access types.
- Topic checks use a separate function
- Feedback messages have been moved out of the access check procs
2023-03-07 20:51:05 -05:00

7 lines
224 B
Plaintext

// Returns used by production machinery
// Based on access type that passed the check
#define PROTOLOCK_ACCESS_NORMAL 1
#define PROTOLOCK_ACCESS_LOWPOP 2
#define PROTOLOCK_ACCESS_CAPTAIN 3
#define PROTOLOCK_ACCESS_MINERAL 4