Skip to content

Commit be396a7

Browse files
committed
feat: make selecting recipe icon color more visible.
1 parent 8b6aa9c commit be396a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/net/okocraft/boxtradestick/MerchantRecipesGUI.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ public void updateTradeItem(int row) {
7777
if (recipeIndex == getCurrentSelected()) {
7878
inventory.setItem(row * 9, ItemUtil.create(
7979
trader.locale(),
80-
Material.GREEN_WOOL,
80+
Material.LIME_WOOL,
8181
Translatables.GUI_RECIPE_SELECTED,
8282
Translatables.GUI_RECIPE_SELECTED_LORE
8383
));
8484
} else {
8585
inventory.setItem(row * 9, ItemUtil.create(
8686
trader.locale(),
87-
Material.RED_WOOL,
87+
Material.RED_STAINED_GLASS,
8888
Translatables.GUI_RECIPE_NOT_SELECTED,
8989
Translatables.GUI_RECIPE_SELECTED_LORE
9090
));

0 commit comments

Comments
 (0)