Ok I think I am getting somewhere now!!! Someone plz stop me if iam totally wrong on this one.
Material fix: in file mem.c
IN OBJ_INDEX_DATA *new_obj_index( void )
pObj->description = str_dup( "(no description)" );
Add this --> pObj->material = str_dup( "none" ); /* Olc 2.01 bugfix
*/
IN void free_obj_index( OBJ_INDEX_DATA *pObj )
free_string( pObj->description );
Add this --> free_string( pObj->material ); /* Olc 2.01 bugfix */
Is this correct?

