Some debug

This commit is contained in:
libraryaddict 2021-11-09 16:42:55 +13:00
parent 344344979c
commit 0d97159010
1 changed files with 8 additions and 1 deletions

View File

@ -214,7 +214,14 @@ public class LibsDisguises extends JavaPlugin {
}
// This doesn't do anything but makes sure the class is constructed properly.
DisguiseAPI.getSelfDisguiseId();
try {
DisguiseAPI.getSelfDisguiseId();
} catch (Throwable ex) {
while (ex != null) {
ex.printStackTrace();
ex = ex.getCause();
}
}
ReflectionManager.init();
PacketsManager.init();