mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 01:37:37 +00:00
Don't print stack trace, print another few lines of debug for using paper
Closes #133 bye bye
This commit is contained in:
parent
ea07b540b1
commit
e2c9454399
@ -138,7 +138,12 @@ public class FaweBukkit implements IFawe, Listener {
|
|||||||
Class.forName("com.destroystokyo.paper.event.server.AsyncTabCompleteEvent");
|
Class.forName("com.destroystokyo.paper.event.server.AsyncTabCompleteEvent");
|
||||||
Bukkit.getPluginManager().registerEvents(new AsyncTabCompleteListener(WorldEditPlugin.getInstance()), plugin);
|
Bukkit.getPluginManager().registerEvents(new AsyncTabCompleteListener(WorldEditPlugin.getInstance()), plugin);
|
||||||
} catch (Throwable ignore) {
|
} catch (Throwable ignore) {
|
||||||
ignore.printStackTrace();
|
debug("====== USE PAPER ======");
|
||||||
|
debug("DOWNLOAD: https://papermc.io/ci/job/Paper-1.13/");
|
||||||
|
debug("GUIDE: https://www.spigotmc.org/threads/21726/");
|
||||||
|
debug(" - This is only a recommendation");
|
||||||
|
debug(" - Allows the use of Async Tab Completetion as provided by Paper");
|
||||||
|
debug("==============================");
|
||||||
Bukkit.getPluginManager().registerEvents(new SyncTabCompleteListener(WorldEditPlugin.getInstance()), plugin);
|
Bukkit.getPluginManager().registerEvents(new SyncTabCompleteListener(WorldEditPlugin.getInstance()), plugin);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user