We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fdcd14 commit 624aa17Copy full SHA for 624aa17
1 file changed
src/main/java/me/kodysimpson/simpapi/menu/MenuManager.java
@@ -79,6 +79,7 @@ public static void openMenu(Class<? extends Menu> menuClass, Player player) thro
79
try {
80
menuClass.getConstructor(PlayerMenuUtility.class).newInstance(getPlayerMenuUtility(player)).open();
81
} catch (InstantiationException | IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
82
+ System.out.println(e);
83
throw new MenuManagerException();
84
}
85
0 commit comments