diff options
author | Pxx500 <81298696+Pxx500@users.noreply.github.com> | 2023-03-21 11:55:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-21 10:55:30 +0000 |
commit | c4f318ca9d7ddbbbd549a23333e20b06291ca1c9 (patch) | |
tree | 04cf4e2f5d47d89a4b3934aaab0971c23177e57e /src/main/java/kubatech/loaders | |
parent | fa4bf11a33e33ae066020613b0e22eefbd023005 (diff) | |
download | GT5-Unofficial-c4f318ca9d7ddbbbd549a23333e20b06291ca1c9.tar.gz GT5-Unofficial-c4f318ca9d7ddbbbd549a23333e20b06291ca1c9.tar.bz2 GT5-Unofficial-c4f318ca9d7ddbbbd549a23333e20b06291ca1c9.zip |
Fix wrong meta ID for EIG (#63)
* fix
* spotlessApply (#64)
Co-authored-by: GitHub GTNH Actions <>
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/main/java/kubatech/loaders')
-rw-r--r-- | src/main/java/kubatech/loaders/RecipeLoader.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/kubatech/loaders/RecipeLoader.java b/src/main/java/kubatech/loaders/RecipeLoader.java index 9437b965a3..d7a4d52845 100644 --- a/src/main/java/kubatech/loaders/RecipeLoader.java +++ b/src/main/java/kubatech/loaders/RecipeLoader.java @@ -139,8 +139,8 @@ public class RecipeLoader { if (dep) { try { item.set( - mte.getConstructor(int.class, String.class, String.class) - .newInstance(MTEID, aName, aNameRegional).getStackForm(1)); + mte.getConstructor(int.class, String.class, String.class).newInstance(ID, aName, aNameRegional) + .getStackForm(1)); } catch (InvocationTargetException ex) { Throwable original_ex = ex.getCause(); if (original_ex instanceof RuntimeException) throw (RuntimeException) original_ex; |