Oh, one more quick fix for Iksar beast pets!
I figured out why they had the strange texture across their face when summoned. They have to have 'face' set to 0. It's 1 by default.
Starting at line 326 in pets.cpp:
	Code:
			case IKSAR: 
			npc_type->race = WOLF; 
			npc_type->texture = 0; 
			npc_type->gender = 1; 
			npc_type->luclinface = 0; 
			npc_type->size *= 2.0f; 
			break;
 Tested it myself. It correctly changes this:
to this:
-Danyelle/Miku