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