aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/RecipeHelper.java
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-08-18 17:02:08 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-08-18 17:02:08 +0800
commitb6f36732c933c6d406d730e11cd3b7ed390b95ae (patch)
treeea7f7ee385a313c45ba2e5ef6371b4f2eaeea322 /src/main/java/me/shedaniel/rei/api/RecipeHelper.java
parentb65de8ed7fe045df451130e3c790613c4f002e2c (diff)
downloadRoughlyEnoughItems-b6f36732c933c6d406d730e11cd3b7ed390b95ae.tar.gz
RoughlyEnoughItems-b6f36732c933c6d406d730e11cd3b7ed390b95ae.tar.bz2
RoughlyEnoughItems-b6f36732c933c6d406d730e11cd3b7ed390b95ae.zip
Speed Craft -> Auto Craft
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/RecipeHelper.java')
-rw-r--r--src/main/java/me/shedaniel/rei/api/RecipeHelper.java6
1 files changed, 3 insertions, 3 deletions
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<ButtonAreaSupplier> getSpeedCraftButtonArea(RecipeCategory category);
+ Optional<ButtonAreaSupplier> 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);
}
/**