From b6f36732c933c6d406d730e11cd3b7ed390b95ae Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 18 Aug 2019 17:02:08 +0800 Subject: Speed Craft -> Auto Craft --- src/main/java/me/shedaniel/rei/api/RecipeHelper.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/RecipeHelper.java') diff --git a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java index 5d76eb70e..3ef78f603 100644 --- a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java +++ b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java @@ -123,7 +123,7 @@ public interface RecipeHelper { * @param category the category of the display * @return the optional of speed crafting button area */ - Optional getSpeedCraftButtonArea(RecipeCategory category); + Optional getAutoCraftButtonArea(RecipeCategory category); /** * Registers a speed crafting button area @@ -131,7 +131,7 @@ public interface RecipeHelper { * @param category the category of the button area * @param rectangle the button area */ - void registerSpeedCraftButtonArea(Identifier category, ButtonAreaSupplier rectangle); + void registerAutoCraftButtonArea(Identifier category, ButtonAreaSupplier rectangle); /** * Removes the speed crafting button @@ -139,7 +139,7 @@ public interface RecipeHelper { * @param category the category of the button */ default void removeSpeedCraftButton(Identifier category) { - registerSpeedCraftButtonArea(category, bounds -> null); + registerAutoCraftButtonArea(category, bounds -> null); } /** -- cgit