This commit is contained in:
Akash Mozumdar 2018-09-02 12:47:48 -04:00
parent ee14e73541
commit c0b294de0f

View File

@ -56,5 +56,5 @@ bool RemoveRepeatedSentences(std::wstring& sentence, int threadHandle)
bool ProcessSentence(std::wstring& sentence, const InfoForExtension* miscInfo) bool ProcessSentence(std::wstring& sentence, const InfoForExtension* miscInfo)
{ {
if (GetProperty("hook address", miscInfo) == -1) return false; if (GetProperty("hook address", miscInfo) == -1) return false;
return RemoveRepeatedChars(sentence) | RemoveCyclicRepeats(sentence) | RemoveRepeatedSentences(sentence, GetProperty("thread handle", miscInfo)); return RemoveRepeatedChars(sentence) | RemoveCyclicRepeats(sentence) | RemoveRepeatedSentences(sentence, GetProperty("text handle", miscInfo));
} }