mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 11:38:40 +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
|
@Override
|
||||||
public @NonNull Builder group(@NonNull String group) {
|
public @NonNull Builder group(@NonNull String group) {
|
||||||
this.groupName = Objects.requireNonNull(group, "group");
|
this.groupName = Objects.requireNonNull(group, "group").toLowerCase();
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user