diff options
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 |