aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/plugin/RandomRecipe.java
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-01-08 18:23:00 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-01-08 18:23:00 +0800
commit4c175cf8a0f02dc3c4ef4e0c92eaa54f4e0bafd5 (patch)
tree468a1d03c3a7295b43f28e71b84856a512e72b3f /src/main/java/me/shedaniel/plugin/RandomRecipe.java
parenteea47c59b58b000e0a3d329102c7a26c67e37039 (diff)
downloadRoughlyEnoughItems-4c175cf8a0f02dc3c4ef4e0c92eaa54f4e0bafd5.tar.gz
RoughlyEnoughItems-4c175cf8a0f02dc3c4ef4e0c92eaa54f4e0bafd5.tar.bz2
RoughlyEnoughItems-4c175cf8a0f02dc3c4ef4e0c92eaa54f4e0bafd5.zip
Craftable Only WIP
Diffstat (limited to 'src/main/java/me/shedaniel/plugin/RandomRecipe.java')
-rw-r--r--src/main/java/me/shedaniel/plugin/RandomRecipe.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/plugin/RandomRecipe.java b/src/main/java/me/shedaniel/plugin/RandomRecipe.java
index bb1a1a7f0..382f3a726 100644
--- a/src/main/java/me/shedaniel/plugin/RandomRecipe.java
+++ b/src/main/java/me/shedaniel/plugin/RandomRecipe.java
@@ -4,6 +4,7 @@ import me.shedaniel.api.IRecipe;
import net.minecraft.block.Blocks;
import net.minecraft.item.ItemStack;
+import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
@@ -30,4 +31,10 @@ public class RandomRecipe implements IRecipe<ItemStack> {
public List<List<ItemStack>> getInput() {
return new LinkedList<>(Arrays.asList(new LinkedList<>(Arrays.asList(new ItemStack[]{new ItemStack(Blocks.OAK_LOG.getItem())}))));
}
+
+ @Override
+ public List<List<ItemStack>> getRecipeRequiredInput() {
+ return new ArrayList<>();
+ }
+
} \ No newline at end of file