From 16470e22320deca41f5e05e00a95a36a3843da6f Mon Sep 17 00:00:00 2001 From: Revision Date: Sat, 16 Nov 2024 23:14:46 +0100 Subject: [PATCH] Fix bots dropping quests that are green (#723) --- src/strategy/actions/DropQuestAction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/actions/DropQuestAction.cpp b/src/strategy/actions/DropQuestAction.cpp index 2a23c019..ffdbb942 100644 --- a/src/strategy/actions/DropQuestAction.cpp +++ b/src/strategy/actions/DropQuestAction.cpp @@ -118,7 +118,7 @@ bool CleanQuestLogAction::Execute(Event event) } // Check if the quest is trivial (grey) for the bot - if ((botLevel - questLevel) >= trivialLevel) + if ((botLevel - questLevel) > trivialLevel) { // Output only if "debug rpg" strategy is enabled if (botAI->HasStrategy("debug rpg", BotState::BOT_STATE_COMBAT))