diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-01-09 16:44:16 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-01-09 16:44:16 +0800 |
| commit | 29774e290b17d3f3ce3a8cc2b6b3be8477d85fb8 (patch) | |
| tree | da254c8689097a41596a0b82f5bd6b591b89865e /src/main/java/me/shedaniel/api/IRecipe.java | |
| parent | fca0cd88625d59e05dc1f0c54fac5dcd232ae28e (diff) | |
| download | RoughlyEnoughItems-29774e290b17d3f3ce3a8cc2b6b3be8477d85fb8.tar.gz RoughlyEnoughItems-29774e290b17d3f3ce3a8cc2b6b3be8477d85fb8.tar.bz2 RoughlyEnoughItems-29774e290b17d3f3ce3a8cc2b6b3be8477d85fb8.zip | |
Fix recipes with 'holes' in it
Diffstat (limited to 'src/main/java/me/shedaniel/api/IRecipe.java')
| -rwxr-xr-x | src/main/java/me/shedaniel/api/IRecipe.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/me/shedaniel/api/IRecipe.java b/src/main/java/me/shedaniel/api/IRecipe.java index a79123ddd..096c6fe1f 100755 --- a/src/main/java/me/shedaniel/api/IRecipe.java +++ b/src/main/java/me/shedaniel/api/IRecipe.java @@ -15,6 +15,6 @@ public interface IRecipe<T> { public List<List<T>> getInput(); - public List<List<T>> getRecipeRequiredInput(); + public List<List<ItemStack>> getRecipeRequiredInput(); } |
