File tree Expand file tree Collapse file tree
implement/applications/eve-online/eve-online-combat-anomaly-bot Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments