--- deliantra/server/include/define.h 2007/04/15 14:15:15 1.49 +++ deliantra/server/include/define.h 2007/04/21 12:28:32 1.50 @@ -597,14 +597,16 @@ * describe_item() so properly describe those types. * change_abil() probably should be updated also. */ -#define MOVE_WALK 0x1 /* Object walks */ -#define MOVE_FLY_LOW 0x2 /* Low flying object */ -#define MOVE_FLY_HIGH 0x4 /* High flying object */ -#define MOVE_FLYING 0x6 +#define MOVE_WALK 0x01 /* Object walks */ +#define MOVE_FLY_LOW 0x02 /* Low flying object */ +#define MOVE_FLY_HIGH 0x04 /* High flying object */ +#define MOVE_FLYING 0x06 /* Combo of fly_low and fly_high */ -#define MOVE_SWIM 0x8 /* Swimming object */ +#define MOVE_SWIM 0x08 /* Swimming object */ #define MOVE_BOAT 0x10 /* Boats/sailing */ -#define MOVE_ALL 0x1f /* Mask of all movement types */ +#define MOVE_SHIP 0x20 /* boats suitable fro oceans */ + +#define MOVE_ALL 0x3f /* Mask of all movement types */ /* typdef here to define type large enough to hold bitmask of * all movement types. Make one declaration so easy to update.