Skip to content

Commit

Permalink
Fixed reg only LM feed
Browse files Browse the repository at this point in the history
  • Loading branch information
panthernet committed Mar 16, 2021
1 parent e3bde31 commit d25f8b2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ThunderED/Modules/OnDemand/LiveKillFeedModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,10 @@ private async Task ProcessKill(JsonZKill.Killmail kill)
!hasAttackerMatch && !hasVictimMatch)
continue;

//skip if no reg user found in KM
if(group.FeedOnlyKillsWithRegisteredUsers && !hasAttackerMatch && !hasVictimMatch)
continue;

#endregion

#region Location checks (except system radius)
Expand Down
5 changes: 5 additions & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### V2.0.9
+ Fixed DB cleanup
+ Fixed reg only LM feed
+ Fixed telegram + !timers command issue

### V2.0.8
+ Added ability to calculate mining ISK by refine materials price if possible (improvements will follow)
+ Added new ZKill group property `FeedOnlyKillsWithRegisteredUsers` to filter out kills by characters authed with this bot
Expand Down

0 comments on commit d25f8b2

Please sign in to comment.