Fixed default layer

This commit is contained in:
Auxilor
2022-09-29 19:12:29 +01:00
parent 740c79f087
commit bb62cc0bcd

View File

@@ -72,7 +72,7 @@ public interface MenuBuilder {
default MenuBuilder addComponent(final int row,
final int column,
@NotNull final GUIComponent component) {
return this.addComponent(MenuLayer.BACKGROUND, row, column, component);
return this.addComponent(MenuLayer.MIDDLE, row, column, component);
}
/**