1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-03 03:12:46 +02:00

Default to merge when using /lp import (#2601)

This commit is contained in:
Luck
2020-09-07 16:54:27 +01:00
parent 63f67ca72c
commit 4027129052

View File

@@ -134,7 +134,7 @@ public class ImportCommand extends SingleCommand {
}
}
Importer importer = new Importer(plugin, sender, data, args.contains("--merge"));
Importer importer = new Importer(plugin, sender, data, !args.contains("--replace"));
// Run the importer in its own thread.
plugin.getBootstrap().getScheduler().executeAsync(() -> {