Use our own thread

This commit is contained in:
Xephi59 2015-07-21 01:17:24 +02:00
parent 03bfe80ee2
commit 8b48e936fb

View File

@ -788,7 +788,8 @@ public class AuthMe extends JavaPlugin {
if (Settings.getDataSource == DataSource.DataSourceType.FILE) {
Converter converter = new ForceFlatToSqlite(database, this);
Bukkit.getScheduler().runTaskAsynchronously(this, converter);
Thread t = new Thread(converter);
t.start();
ConsoleLogger.showError("FlatFile backend as been detected and is now deprecated, next time server startup, it will be changed to SQLite... Conversion will be started Asynchronously, it will not drop down your performances !");
ConsoleLogger.showError("If you want to keep FlatFile, set file again into config at backend, but this message and this change will appear again at the next restart");
}