--- deliantra/server/include/god.h 2007/11/08 19:43:24 1.6 +++ deliantra/server/include/god.h 2008/05/06 16:55:25 1.8 @@ -1,7 +1,7 @@ /* * This file is part of Deliantra, the Roguelike Realtime MMORPG. * - * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team + * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team * Copyright (©) 1992,2007 Frank Tore Johansen * @@ -21,12 +21,13 @@ * The authors can be reached via e-mail to */ +/* Used to link together the gods */ typedef struct glnk : zero_initialised -{ /* Used to link together the gods */ - shstr name; /* name of this god */ - struct archetype *arch; /* pointer to the archetype of this god */ - int id; /* id of the god */ - shstr pantheon; /* the name of the group this god belongs to */ +{ + shstr name; /* name of this god */ + arch_ptr arch; /* pointer to the archetype of this god */ + int id; /* id of the god */ + shstr pantheon; /* the name of the group this god belongs to */ struct glnk *next; } godlink;