mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-05 11:23:17 +01:00
5495930e45
* Vending machine lock improvements * No dumping stuff in when the vendor is locked! * Fix custom vendor UI height when unlocked.
14 lines
442 B
Plaintext
14 lines
442 B
Plaintext
// Use these for the different types of vendors
|
|
#define VENDOR_TYPE_GENERIC "general"
|
|
#define VENDOR_TYPE_CLOTHING "clothing"
|
|
#define VENDOR_TYPE_FOOD "food"
|
|
#define VENDOR_TYPE_DRINK "drink"
|
|
#define VENDOR_TYPE_SUPPLIES "supplies"
|
|
#define VENDOR_TYPE_DEPARTMENTAL "departmental"
|
|
#define VENDOR_TYPE_RECREATION "recreation"
|
|
|
|
// How "locked" is this vendor?
|
|
#define VENDOR_UNLOCKED 0
|
|
#define VENDOR_LOCKED_FOR_OTHERS 1
|
|
#define VENDOR_LOCKED 2
|