mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-14 20:59:10 +00:00
Some debug
This commit is contained in:
parent
344344979c
commit
0d97159010
1 changed files with 8 additions and 1 deletions
|
@ -214,7 +214,14 @@ public class LibsDisguises extends JavaPlugin {
|
||||||
}
|
}
|
||||||
|
|
||||||
// This doesn't do anything but makes sure the class is constructed properly.
|
// 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();
|
ReflectionManager.init();
|
||||||
|
|
||||||
PacketsManager.init();
|
PacketsManager.init();
|
||||||
|
|
Loading…
Reference in a new issue