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
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B

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(() -> {