clue plugin: fix text matching anagrams

This commit is contained in:
Adam
2019-04-13 17:39:49 -04:00
parent f7332aa074
commit eaac5f7b3a

View File

@@ -466,7 +466,7 @@ public class ClueScrollPlugin extends Plugin
}
// (This|The) anagram reveals who to speak to next:
if (text.startsWith("anagram reveals who to speak to next:"))
if (text.contains("anagram reveals who to speak to next:"))
{
return AnagramClue.forText(text);
}