mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-10-30 23:39:33 +01:00
Fix user exports
This commit is contained in:
parent
7279fdc25f
commit
ebe12f838c
@ -230,7 +230,7 @@ public class Exporter implements Runnable {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
output.add("/lp" + NodeFactory.nodeAsCommand(node, user.getUuid().toString(), false, true));
|
output.add("/lp " + NodeFactory.nodeAsCommand(node, user.getUuid().toString(), false, true));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!user.getPrimaryGroup().getStoredValue().orElse("default").equalsIgnoreCase("default")) {
|
if (!user.getPrimaryGroup().getStoredValue().orElse("default").equalsIgnoreCase("default")) {
|
||||||
|
@ -323,7 +323,7 @@ public abstract class ConfigurateDao extends AbstractDao {
|
|||||||
.map(bulkUpdate::apply)
|
.map(bulkUpdate::apply)
|
||||||
.filter(Objects::nonNull)
|
.filter(Objects::nonNull)
|
||||||
.collect(Collectors.toSet());
|
.collect(Collectors.toSet());
|
||||||
|
|
||||||
if (!nodes.equals(results)) {
|
if (!nodes.equals(results)) {
|
||||||
writeNodes(object, results);
|
writeNodes(object, results);
|
||||||
saveFile(file, object);
|
saveFile(file, object);
|
||||||
|
Loading…
Reference in New Issue
Block a user