Skip to content

Commit

Permalink
AI chat: When debug llm is enabled the debug output is no longer adde…
Browse files Browse the repository at this point in the history
…d to the context
  • Loading branch information
mostlikely4r committed Nov 29, 2024
1 parent d5edfae commit a9d0a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playerbot/strategy/actions/RpgSubActions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ bool RpgAIChatAction::SpeakLine()
}
}

if (message.find("d:") != std::string::npos)
if (message.find("d:") == std::string::npos)
{
std::string llmContext = AI_VALUE(std::string, "manual string::llmcontext rpg");
llmContext = llmContext + " " + message;
Expand Down

0 comments on commit a9d0a8b

Please sign in to comment.