--- deliantra/server/common/arch.C 2010/05/06 22:35:41 1.106 +++ deliantra/server/common/arch.C 2016/11/16 23:41:59 1.112 @@ -1,24 +1,24 @@ /* * This file is part of Deliantra, the Roguelike Realtime MMORPG. - * - * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team + * + * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * Copyright (©) 2002 Mark Wedel & Crossfire Development Team * Copyright (©) 1992 Frank Tore Johansen - * + * * Deliantra is free software: you can redistribute it and/or modify it under * the terms of the Affero GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your * option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the Affero GNU General Public License * and the GNU General Public License along with this program. If not, see * . - * + * * The authors can be reached via e-mail to */ @@ -55,9 +55,9 @@ //+GPL /* - * Creates an object. This function is called by get_archetype () + * Creates an object. This function is called by archetype::get () * if it fails to find the appropriate archetype. - * Thus get_archetype() will be guaranteed to always return + * Thus archetype::get() will be guaranteed to always return * an object, and never NULL. */ static object * @@ -532,7 +532,7 @@ void archetype::gc () { - int cnt = max (1, min (allarch.size () / 128, dirtycnt)); + int cnt = max (1, min (allarch.size () / 128, dirtycnt)); dirtycnt = max (0, dirtycnt - cnt); do @@ -586,12 +586,6 @@ * object containing a copy of the archetype. */ object * -get_archetype (const char *name) -{ - return archetype::get (name); -} - -object * archetype::get (const char *name) { archetype *at = find (name);