Skip to content

Commit

Permalink
Hardening and update CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
aussig committed Sep 24, 2023
1 parent fff28f2 commit de4b4a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

* Allow each overlay panel to be individually hidden or shown.
* Trade purchase is now reported in three brackets rather than two: 🅻 | 🅼 | 🅷
* Automatically attempt to track megaship scenarios. As with Ground CZs, the game doesn't give us enough information to detect whether you've actually **won** the scenario, so if you drop in and log a kill within 5 minutes, this is tallied as a win for the faction that's at war with the first ship you kill.


## v3.2.0-a2 - 2023-09-10
Expand Down
2 changes: 1 addition & 1 deletion bgstally/activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ def _bv_megaship_scenario(self, journal_entry:dict, current_system:dict, state:S
"""
faction:dict = current_system['Factions'].get(journal_entry['VictimFaction'])
if not faction: return
opponent_faction:dict = current_system['Factions'].get(faction.get('Opponent'))
opponent_faction:dict = current_system['Factions'].get(faction.get('Opponent', ""))
if not opponent_faction: return

# If we've already counted this scenario, exit
Expand Down

0 comments on commit de4b4a8

Please sign in to comment.