Skip to content

Commit

Permalink
hot patch remove fleet carriers from default system station names list.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-J-Mason committed May 19, 2024
1 parent 6b7c440 commit bd86b8a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ WHERE NOT EXISTS (SELECT id FROM upsert)
@Select({
"SELECT station.name FROM station " +
"INNER JOIN system ON station.system_id = system.id " +
"WHERE system.name = #{systemName}"
"WHERE system.name = #{systemName} " +
"AND station.type != 'FleetCarrier'"
})
List<String> findStationNamesBySystemName(@Param("systemName") String systemName);
}

0 comments on commit bd86b8a

Please sign in to comment.