Make rotation whitelist not case-sensitive

This commit is contained in:
Kamiel
2018-03-02 05:53:55 +01:00
parent 09c8dd9e26
commit 3b93baa372

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))
{