--- deliantra/server/include/race.h 2006/02/03 07:12:50 1.1 +++ deliantra/server/include/race.h 2006/09/11 01:49:03 1.2 @@ -1,9 +1,10 @@ - -typedef struct ralnk { /* Used to link the race lists together */ - const char *name; /* name of this race entry */ +/* Used to link the race lists together */ +struct racelink +{ + shstr name; /* name of this race entry */ int nrof; /* nrof things belonging to this race */ - struct oblnk *member; /* linked object list of things belonging to this race */ - struct ralnk *next; -} racelink; + objectlink *member; /* linked object list of things belonging to this race */ + racelink *next; +};