Skip to content

Commit

Permalink
Fixed NPE errors when clicking in /is warp menu on empty slots (#1691)
Browse files Browse the repository at this point in the history
  • Loading branch information
OmerBenGera committed Apr 28, 2023
1 parent b483558 commit 5426e9d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -42,7 +42,7 @@ public class MenuWarps extends AbstractPagedMenu<MenuWarps.View, MenuWarps.Args,
private final List<String> editLore;

private MenuWarps(MenuParseResult<View> parseResult, List<String> editLore) {
super(MenuIdentifiers.MENU_WARPS, parseResult, true);
super(MenuIdentifiers.MENU_WARPS, parseResult, false);
this.editLore = editLore;
}

Expand Down

0 comments on commit 5426e9d

Please sign in to comment.