--- deliantra/server/common/anim.C 2010/03/26 01:04:43 1.36 +++ deliantra/server/common/anim.C 2012/01/03 11:25:30 1.39 @@ -1,7 +1,7 @@ /* * 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 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * Copyright (©) 2002-2003 Mark Wedel & Crossfire Development Team * Copyright (©) 1992 Frank Tore Johansen * @@ -103,7 +103,7 @@ if (!op->animation_id || !NUM_ANIMATIONS (op)) { LOG (llevError, "Object %s lacks animation.\n", op->debug_desc ()); - CLEAR_FLAG (op, FLAG_ANIMATE); + op->clr_flag (FLAG_ANIMATE); return; } @@ -160,12 +160,12 @@ if (op->face == 0) { op->invisible = 1; - CLEAR_FLAG (op, FLAG_ALIVE); + op->clr_flag (FLAG_ALIVE); } else { op->invisible = 0; - SET_FLAG (op, FLAG_ALIVE); + op->set_flag (FLAG_ALIVE); } }