mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 03:25:19 +01:00
Group names should always be lowercase in inheritance nodes
This commit is contained in:
parent
dc32c84bb3
commit
ab082aa311
@ -96,7 +96,7 @@ public class Inheritance extends AbstractNode<InheritanceNode, InheritanceNode.B
|
||||
|
||||
@Override
|
||||
public @NonNull Builder group(@NonNull String group) {
|
||||
this.groupName = Objects.requireNonNull(group, "group");
|
||||
this.groupName = Objects.requireNonNull(group, "group").toLowerCase();
|
||||
return this;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user