--- deliantra/server/common/readable.C 2006/09/13 23:32:04 1.6 +++ deliantra/server/common/readable.C 2006/09/14 21:16:11 1.8 @@ -1,9 +1,3 @@ - -/* - * static char *rcsid_readable_c = - * "$Id: readable.C,v 1.6 2006/09/13 23:32:04 root Exp $"; - */ - /* CrossFire, A Multiplayer game for X-windows @@ -1619,7 +1613,7 @@ /* preamble */ sprintf (retbuf, "Herein is described a project using %s: \n", formula->skill ? &formula->skill : "an unknown skill"); - if ((at = find_archetype (op_name)) != (archetype *) NULL) + if ((at = archetype::find (op_name)) != (archetype *) NULL) op_name = at->clone.name; else LOG (llevError, "formula_msg() can't find arch %s for formula.\n", op_name); @@ -1658,7 +1652,7 @@ linked_char *next; archetype *at; - at = find_archetype (formula->cauldron); + at = archetype::find (formula->cauldron); sprintf (retbuf + strlen (retbuf), " may be made at %s using the following ingredients:\n", at ? query_name (&at->clone) : "an unknown place");