Merge pull request #772 from Kamielvf/raids-plugin-hotfix

Raids plugin: Make rotation whitelist not case-sensitive
This commit is contained in:
Tomas Slusny
2018-03-02 08:45:31 +01:00
committed by GitHub

View File

@@ -340,7 +340,7 @@ public class RaidsPlugin extends Plugin
Matcher m = ROTATION_REGEX.matcher(input);
while (m.find())
{
String rotation = m.group(1);
String rotation = m.group(1).toLowerCase();
if (!list.contains(rotation))
{