From 4fef651d571cd17253a116453f4071ed5adfefcd Mon Sep 17 00:00:00 2001 From: ybw0014 Date: Mon, 9 Oct 2023 19:09:06 -0400 Subject: [PATCH 1/2] chore(SmartFactory): add more descriptions for the misc slots --- .../ncbpfluffybear/fluffymachines/machines/SmartFactory.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/io/ncbpfluffybear/fluffymachines/machines/SmartFactory.java b/src/main/java/io/ncbpfluffybear/fluffymachines/machines/SmartFactory.java index e5c91f2d..cefed619 100644 --- a/src/main/java/io/ncbpfluffybear/fluffymachines/machines/SmartFactory.java +++ b/src/main/java/io/ncbpfluffybear/fluffymachines/machines/SmartFactory.java @@ -91,10 +91,11 @@ public void init() { Utils.createBorder(this, ChestMenuUtils.getOutputSlotTexture(), BORDER_OUT); this.addItem(PROGRESS_SLOT, PROGRESS_ITEM); this.addItem(9, new CustomItemStack(Material.BLACK_STAINED_GLASS_PANE, "&7Coal Slots", - "&eThis row is reserved for coal for cargo" + "&eThis row is reserved for coal for cargo." )); this.addItem(18, new CustomItemStack(Material.YELLOW_STAINED_GLASS_PANE, "&bMisc Slots", - "&eThe remaining rows accept any item", "&eCargo will only complete the stacks" + "&eThe remaining rows accept any item.", "&eCargo will only fill stacks.", + "&eNeed to keep one more item in", "&eeach stack as template." )); this.addMenuClickHandler(RECIPE_SLOT, ChestMenuUtils.getEmptyClickHandler()); } From 4740a3a9fc8a4dca3c35366296076a32e7a125eb Mon Sep 17 00:00:00 2001 From: ybw0014 Date: Mon, 9 Oct 2023 19:26:06 -0400 Subject: [PATCH 2/2] chore(SmartFactory): suggestion from FluffyBear --- .../ncbpfluffybear/fluffymachines/machines/SmartFactory.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/io/ncbpfluffybear/fluffymachines/machines/SmartFactory.java b/src/main/java/io/ncbpfluffybear/fluffymachines/machines/SmartFactory.java index cefed619..39f5f23c 100644 --- a/src/main/java/io/ncbpfluffybear/fluffymachines/machines/SmartFactory.java +++ b/src/main/java/io/ncbpfluffybear/fluffymachines/machines/SmartFactory.java @@ -94,7 +94,8 @@ public void init() { "&eThis row is reserved for coal for cargo." )); this.addItem(18, new CustomItemStack(Material.YELLOW_STAINED_GLASS_PANE, "&bMisc Slots", - "&eThe remaining rows accept any item.", "&eCargo will only fill stacks.", + "&eThe remaining rows accept any item.", "&eCargo will fill stacks after", + "&eat least one of each recipe", "&erequirement has been inserted.", "&eNeed to keep one more item in", "&eeach stack as template." )); this.addMenuClickHandler(RECIPE_SLOT, ChestMenuUtils.getEmptyClickHandler());