//If territory is defined for this caster then it passes object changes in territory to target and starts autocasting
 public void OnTerritoryEntered(Transform objectTransform)
 {
     playersInTerritory++;
     target.AddTracked(objectTransform);
     SetAutocast(true);
 }