View Single Post
  #3  
Old 03-23-2011, 01:20 AM
501st
Sarnak
 
Join Date: Jan 2009
Location: Virginia
Posts: 51
Default

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
Reply With Quote