--- deliantra/server/common/holy.C 2009/11/06 12:49:19 1.20 +++ deliantra/server/common/holy.C 2009/11/06 13:31:47 1.22 @@ -67,37 +67,6 @@ #endif } -/* baptize_altar() - (cosmetically) change the name to that of the - * god in question, then set the title for later use. -b.t. - */ -static int -baptize_altar (object *op) -{ - char buf[MAX_BUF]; - - /* if the title field is pre-set, then that altar is - * already dedicated. */ - if (!op->title) - { - godlink *god = get_rand_god (); - - if (!god || !god->name) - { - LOG (llevError, "baptise_altar(): bizarre nameless god!\n"); - return 0; - } - /* if the object name hasnt' been changed, we tack on the gods name */ - if (op->name == op->arch->object::name) - { - sprintf (buf, "%s of %s", &op->name, &god->name); - op->name = buf; - } - op->title = god->name; - return 1; - } - return 0; -} - godlink * get_rand_god (void) { @@ -127,19 +96,6 @@ : 0; } -void -free_all_god (void) -{ - godlink *god, *godnext; - - LOG (llevDebug, "Freeing god information\n"); - for (god = first_god; god; god = godnext) - { - godnext = god->next; - 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