Skip to content

Commit 2998f4a

Browse files
committed
Update for new EVE Online game client - anomaly in probe scanner
Adapt to the change in the EVE Online game client probe scanner window reported this week.
1 parent c4d73f8 commit 2998f4a

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

  • implement/applications/eve-online/eve-online-combat-anomaly-bot

implement/applications/eve-online/eve-online-combat-anomaly-bot/Bot.elm

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{- EVE Online combat anomaly bot version 2025-10-29
1+
{- EVE Online Combat Anomaly Bot version 2026-05-24
22
33
This bot uses the probe scanner to find combat anomalies and kills rats using drones and weapon modules.
44
@@ -364,12 +364,25 @@ findReasonToIgnoreProbeScanResult context probeScanResult =
364364

365365
Just scanResultID ->
366366
let
367-
isCombatAnomaly =
367+
isCombatAnomaly2025 =
368368
probeScanResult.cellsTexts
369369
|> Dict.get "Group"
370370
|> Maybe.map (stringContainsIgnoringCase "combat")
371371
|> Maybe.withDefault False
372372

373+
isCombatAnomaly2026 =
374+
{-
375+
Observed in session-recording-2026-05-20T15-15-351:
376+
'Signal' = "Combat Site
377+
-}
378+
probeScanResult.cellsTexts
379+
|> Dict.get "Signal"
380+
|> Maybe.map (stringContainsIgnoringCase "combat")
381+
|> Maybe.withDefault False
382+
383+
isCombatAnomaly =
384+
isCombatAnomaly2025 || isCombatAnomaly2026
385+
373386
matchesAnomalyNameFromSettings =
374387
(context.eventContext.botSettings.anomalyNames |> List.isEmpty)
375388
|| (context.eventContext.botSettings.anomalyNames

0 commit comments

Comments
 (0)