Moved species defines to setup.dm, add whitelisted species global.

This commit is contained in:
Zuhayr
2013-08-07 01:12:11 -07:00
parent 221324d29b
commit e9a1272d34
3 changed files with 22 additions and 17 deletions
+16 -1
View File
@@ -701,4 +701,19 @@ var/list/RESTRICTED_CAMERA_NETWORKS = list( //Those networks can only be accesse
"thunder",
"ERT",
"NUKE"
)
)
//Species flags.
#define NO_EAT 1
#define NO_BREATHE 2
#define NO_SLEEP 4
#define NO_SHOCK 8
#define NO_SCAN 16
#define NON_GENDERED 32
#define REQUIRE_LIGHT 64
#define WHITELISTED 128
#define HAS_SKIN_TONE 256
#define HAS_LIPS 512
#define HAS_UNDERWEAR 1024
#define HAS_TAIL 2048
#define IS_PLANT 4096