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
commit72e1653cbb38282f8dce59a00fb381e18bfc795d (patch)
tree468a1d03c3a7295b43f28e71b84856a512e72b3f /src/main/java/me/shedaniel/plugin/RandomRecipe.java
parent6d5101aad169bc5d4d8bcd638aee0d4ce71c120a (diff)
downloadRoughlyEnoughItems-72e1653cbb38282f8dce59a00fb381e18bfc795d.tar.gz
RoughlyEnoughItems-72e1653cbb38282f8dce59a00fb381e18bfc795d.tar.bz2
RoughlyEnoughItems-72e1653cbb38282f8dce59a00fb381e18bfc795d.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