--- deliantra/server/common/holy.C 2007/11/08 19:43:23 1.14 +++ deliantra/server/common/holy.C 2008/12/31 17:35:37 1.17 @@ -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 * @@ -65,6 +65,7 @@ god->arch = god_arch; god->name = god_arch->object::name; + // first_god->id MUST be the highest god number for other code to work currently if (!first_god) god->id = 1; else @@ -83,7 +84,6 @@ /* baptize_altar() - (cosmetically) change the name to that of the * god in question, then set the title for later use. -b.t. */ - int baptize_altar (object *op) { @@ -101,7 +101,7 @@ return 0; } /* if the object name hasnt' been changed, we tack on the gods name */ - if (!strcmp (op->name, op->arch->object::name)) + if (op->name == op->arch->object::name) { sprintf (buf, "%s of %s", &op->name, &god->name); op->name = buf;