9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2025-12-19 15:09:24 +00:00
This commit is contained in:
XiaoMoMi
2025-01-31 23:49:53 +08:00
parent db8abc8648
commit 29c70a735a

View File

@@ -996,7 +996,7 @@ public class BukkitConfigManager extends ConfigManager {
return new ArrayList<>(intersection);
} else if (groupExpression.contains("|")) {
Set<String> members = new HashSet<>();
String[] groups = groupExpression.split("&");
String[] groups = groupExpression.split("\\|");
for (String group : groups) {
members.addAll(groupProvider.apply(group));
}