Merge pull request #772 from Kamielvf/raids-plugin-hotfix
Raids plugin: Make rotation whitelist not case-sensitive
This commit is contained in:
@@ -340,7 +340,7 @@ public class RaidsPlugin extends Plugin
|
|||||||
Matcher m = ROTATION_REGEX.matcher(input);
|
Matcher m = ROTATION_REGEX.matcher(input);
|
||||||
while (m.find())
|
while (m.find())
|
||||||
{
|
{
|
||||||
String rotation = m.group(1);
|
String rotation = m.group(1).toLowerCase();
|
||||||
|
|
||||||
if (!list.contains(rotation))
|
if (!list.contains(rotation))
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user