View Single Post
  #4  
Old 07-22-2009, 07:30 PM
Randymarsh9
Dragon
 
Join Date: Dec 2007
Posts: 658
Default

yeah I found something in the source that I think controls it
Code:
	//see if we are a special type of pet (for command filtering)
	PetType type = petOther;
	if(strncmp(pettype, "Familiar", 8) == 0) {
		type = petFamiliar;
	} else if(strncmp(pettype, "Animation", 9) == 0) {
		type = petAnimation;
	}
. I tried to comment out the animation part like this
//see if we are a special type of pet (for command filtering)
Code:
	PetType type = petOther;
	if(strncmp(pettype, "Familiar", 8) == 0) {
		type = petFamiliar;
	} //else if(strncmp(pettype, "Animation", 9) == 0) {
		type = petAnimation;
	//}
but it didn't do anything
Reply With Quote