diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-10-02 19:18:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-10-02 19:18:31 +0300 |
commit | 6eecb7aa6b9e78e1c681698181294a3350addcf5 (patch) | |
tree | 125325419193d8e515aea857a84616c7fc07d6c7 /db | |
parent | 80836440efc330b37bf75da3f65a9ab26415cf65 (diff) | |
download | serverdata-6eecb7aa6b9e78e1c681698181294a3350addcf5.tar.gz serverdata-6eecb7aa6b9e78e1c681698181294a3350addcf5.tar.bz2 serverdata-6eecb7aa6b9e78e1c681698181294a3350addcf5.tar.xz serverdata-6eecb7aa6b9e78e1c681698181294a3350addcf5.zip |
Add cells constants for set cell types.
Diffstat (limited to 'db')
-rw-r--r-- | db/constants.conf | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/db/constants.conf b/db/constants.conf index 8b769221..5408f849 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -3797,12 +3797,20 @@ constants_db: { NPC_NO_SPRITE: 999 NPC_HIDDEN: 32767 - comment__: "walk masks" + comment__: "Walk masks" WALK_DEFAULT: 0 WALK_WALL: 1 WALK_WATER: 2 WALK_AIR: 4 + comment__: "Cell masks" + CELLS_WALKABLE : 0 + CELLS_WALL : 1 + CELLS_AIR : 2 + CELLS_WATER : 3 + CELLS_NOPLAYER : 5 + CELLS_NOMONSTER : 6 + comment__: "INN enum" NO_INN: 0 REDPLUSH_INN: 1 |