bb
This commit is contained in:
Kenig 2023-03-06 15:10:47 +02:00 committed by GitHub
parent b425dfb69f
commit 0cad50adca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -349,7 +349,10 @@ public class ChestShop extends JavaPlugin {
Plugin authMe = getServer().getPluginManager().getPlugin("AuthMe");
if (authMe != null && authMe.isEnabled()) {
registerEvent(new AuthMeChestShopListener());
try {
registerEvent(new AuthMeChestShopListener());
catch (ClassNotFoundException e) {
}
}
registerEvent(new RestrictedSign());