Fix bug where stations would ignore attacks

This commit is contained in:
cim 2013-12-17 22:06:12 +00:00
parent b11f30df0b
commit a570fbadfc

View File

@ -5436,6 +5436,10 @@ PriorityAIController.prototype.responseComponent_station_shipBeingAttacked = fun
this.ship.target = whom;
}
}
} else {
// time to get one
this.ship.target = whom;
this.reconsiderNow();
}
}