Skip to content

Commit

Permalink
Fix bug discovered by TheRealManiac
Browse files Browse the repository at this point in the history
Fix the bug discovered by TheRealManiac at https://forum.botengine.org/t/mining-bot-question-and-hints/3140/25?u=viir

As said in the video at https://youtu.be/dgV9Ce7f03I?t=749, the return drones threshold should be higher.
  • Loading branch information
Viir committed Apr 23, 2020
1 parent fcda33e commit 99cd531
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,4 +1,4 @@
{- EVE Online mining bot version 2020-04-18
{- EVE Online mining bot version 2020-04-23
The bot warps to an asteroid belt, mines there until the ore hold is full, and then docks at a station to unload the ore. It then repeats this cycle until you stop it.
It remembers the station in which it was last docked, and docks again at the same station.
Expand Down Expand Up @@ -180,7 +180,7 @@ returnDronesAndRunAwayIfHitpointsAreTooLow : BotDecisionContext -> EveOnline.Par
returnDronesAndRunAwayIfHitpointsAreTooLow context shipUI =
let
returnDronesShieldHitpointsThresholdPercent =
context.settings.runAwayShieldHitpointsThresholdPercent - 5
context.settings.runAwayShieldHitpointsThresholdPercent + 5

runAwayWithDescription =
DescribeBranch
Expand Down

0 comments on commit 99cd531

Please sign in to comment.