--- deliantra/server/include/object.h 2006/02/07 23:29:55 1.2 +++ deliantra/server/include/object.h 2006/02/22 18:53:48 1.3 @@ -36,9 +36,9 @@ /* See common/item.c */ typedef struct Body_Locations { - char *save_name; /* Name used to load/save it to disk */ - char *use_name; /* Name used when describing an item we can use */ - char *nonuse_name; /* Name to describe objects we can't use */ + const char *save_name; /* Name used to load/save it to disk */ + const char *use_name; /* Name used when describing an item we can use */ + const char *nonuse_name; /* Name to describe objects we can't use */ } Body_Locations; extern Body_Locations body_locations[NUM_BODY_LOCATIONS]; @@ -239,6 +239,7 @@ MoveType move_type; /* Type of movement this object uses */ MoveType move_block; /* What movement types this blocks */ + MoveType move_allow; /* What movement types explicitly allowd */ MoveType move_on; /* Move types affected moving on to this space */ MoveType move_off; /* Move types affected moving off this space */ MoveType move_slow; /* Movement types this slows down */