--- deliantra/server/common/holy.C 2009/10/12 14:00:57 1.18 +++ deliantra/server/common/holy.C 2009/11/06 12:49:19 1.20 @@ -30,23 +30,8 @@ #include #include -/* init_gods() - this takes a look at all of the archetypes to find - * the objects which correspond to the GODS (type GOD) */ - -void -init_gods (void) -{ - LOG (llevDebug, "Initialising gods...\n"); - - for_all_archetypes (at) - if (at->type == GOD) - add_god_to_list (at); - - LOG (llevDebug, "done.\n"); -} - /* add_god_to_list()- called only from init_gods */ -void +static void add_god_to_list (archetype *god_arch) { if (!god_arch) @@ -85,7 +70,7 @@ /* baptize_altar() - (cosmetically) change the name to that of the * god in question, then set the title for later use. -b.t. */ -int +static int baptize_altar (object *op) { char buf[MAX_BUF]; @@ -154,3 +139,18 @@ delete god; } } + +/* init_gods() - this takes a look at all of the archetypes to find + * the objects which correspond to the GODS (type GOD) */ +void +init_gods (void) +{ + LOG (llevDebug, "Initialising gods...\n"); + + for_all_archetypes (at) + if (at->type == GOD) + add_god_to_list (at); + + LOG (llevDebug, "done.\n"); +} +