//----------------------------------------------------------------------------
void CCreatureManager::fixAltar()
{
	for( TMapCreatures::iterator it = _Creatures.begin(); it != _Creatures.end(); ++it )
	{
		CCreature * c = (*it).second;
		if( c )
		{
			if( c->getAltarForNeutral() )
			{
				c->clearAltarFameRestriction();
				c->clearAltarFameRestrictionValue();
			}
		}
	}
}