diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-01-01 13:37:19 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-01-01 13:37:19 +0800 |
| commit | 430ff25e1bbfce2fe90e69044439cc3ea179dbf1 (patch) | |
| tree | 5b5a186dd65552bdd5a38d0f4fa7505660064d02 /src/main/java/me/shedaniel/plugin/RandomRecipe.java | |
| parent | 620d77c53f37c2e96720e29b76346c5aa6b1ec0d (diff) | |
| download | RoughlyEnoughItems-430ff25e1bbfce2fe90e69044439cc3ea179dbf1.tar.gz RoughlyEnoughItems-430ff25e1bbfce2fe90e69044439cc3ea179dbf1.tar.bz2 RoughlyEnoughItems-430ff25e1bbfce2fe90e69044439cc3ea179dbf1.zip | |
Config Draft
Diffstat (limited to 'src/main/java/me/shedaniel/plugin/RandomRecipe.java')
| -rw-r--r-- | src/main/java/me/shedaniel/plugin/RandomRecipe.java | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/main/java/me/shedaniel/plugin/RandomRecipe.java b/src/main/java/me/shedaniel/plugin/RandomRecipe.java deleted file mode 100644 index 4a33c8be1..000000000 --- a/src/main/java/me/shedaniel/plugin/RandomRecipe.java +++ /dev/null @@ -1,33 +0,0 @@ -package me.shedaniel.plugin; - -import me.shedaniel.api.IRecipe; -import net.minecraft.block.Blocks; -import net.minecraft.item.ItemStack; - -import java.util.Arrays; -import java.util.LinkedList; -import java.util.List; - -public class RandomRecipe implements IRecipe<ItemStack> { - - private String id; - - public RandomRecipe(String id) { - this.id = id; - } - - @Override - public String getId() { - return id; - } - - @Override - public List<ItemStack> getOutput() { - return new LinkedList<>(Arrays.asList(new ItemStack[]{new ItemStack(Blocks.BEETROOTS.getItem())})); - } - - @Override - public List<List<ItemStack>> getInput() { - return new LinkedList<>(Arrays.asList(new LinkedList<>(Arrays.asList(new ItemStack[]{new ItemStack(Blocks.OAK_LOG.getItem())})))); - } -} |
