Set the no_target_hotkey data as well

This commit is contained in:
Michael Cook (mackal) 2014-12-10 02:18:57 -05:00
parent d9a1bcb3fd
commit 0e54019fd5

View File

@ -1863,11 +1863,13 @@ void NPC::PetOnSpawn(NewSpawn_Struct* ns)
SetAllowBeneficial(1);//Allow temp pets to receive buffs and heals if owner is client. SetAllowBeneficial(1);//Allow temp pets to receive buffs and heals if owner is client.
//This will allow CLIENT swarm pets NOT to be targeted with F8. //This will allow CLIENT swarm pets NOT to be targeted with F8.
ns->spawn.targetable_with_hotkey = 0; ns->spawn.targetable_with_hotkey = 0;
no_target_hotkey = 1;
} }
else else
{ {
//NPC cast swarm pets should still be targetable with F8. //NPC cast swarm pets should still be targetable with F8.
ns->spawn.targetable_with_hotkey = 1; ns->spawn.targetable_with_hotkey = 1;
no_target_hotkey = 0;
} }
SetTempPet(true); //Simple mob flag for checking if temp pet SetTempPet(true); //Simple mob flag for checking if temp pet