diff options
author | Martin Robertz <dream-master@gmx.net> | 2020-04-11 15:33:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-11 15:33:47 +0200 |
commit | ce8441b14d3b3e78f4cc5af2dbfc743e274ba22c (patch) | |
tree | 84f24e78676a6b1d8604dd5edd92ba1cd0f6491d /src/main/java/gregtech/api/util/GT_Recipe.java | |
parent | bd10bd57d3db003f63a7abd59422a27894358355 (diff) | |
parent | d604d24ed0fdbb77c4d3431efc1dd994d1140f02 (diff) | |
download | GT5-Unofficial-ce8441b14d3b3e78f4cc5af2dbfc743e274ba22c.tar.gz GT5-Unofficial-ce8441b14d3b3e78f4cc5af2dbfc743e274ba22c.tar.bz2 GT5-Unofficial-ce8441b14d3b3e78f4cc5af2dbfc743e274ba22c.zip |
Merge pull request #263 from GTNewHorizons/fixes
Fixes
Diffstat (limited to 'src/main/java/gregtech/api/util/GT_Recipe.java')
-rw-r--r-- | src/main/java/gregtech/api/util/GT_Recipe.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/util/GT_Recipe.java b/src/main/java/gregtech/api/util/GT_Recipe.java index 6a735c869d..4821702f25 100644 --- a/src/main/java/gregtech/api/util/GT_Recipe.java +++ b/src/main/java/gregtech/api/util/GT_Recipe.java @@ -841,7 +841,7 @@ public class GT_Recipe implements Comparable<GT_Recipe> { } // Unification happens here in case the Input isn't already unificated. - if (aNotUnificated) aInputs = GT_OreDictUnificator.getStackArray(true, aInputs); + if (aNotUnificated) aInputs = GT_OreDictUnificator.getStackArray(true, (Object[]) aInputs); // Check the Recipe which has been used last time in order to not have to search for it again, if possible. if (aRecipe != null) |