diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2021-12-15 22:24:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 15:24:48 +0100 |
commit | 2f58b34ea437962d3fe2f294def84d54bb30630c (patch) | |
tree | 31e36398d94d5c5e7e2da5b3d52fec6a00c5b051 /src/main/java/gregtech/api/util | |
parent | b0154cbc24f57e304a59d9e47a90371b412873ad (diff) | |
download | GT5-Unofficial-2f58b34ea437962d3fe2f294def84d54bb30630c.tar.gz GT5-Unofficial-2f58b34ea437962d3fe2f294def84d54bb30630c.tar.bz2 GT5-Unofficial-2f58b34ea437962d3fe2f294def84d54bb30630c.zip |
Move cache registration out of constructor (#806)
Diffstat (limited to 'src/main/java/gregtech/api/util')
-rw-r--r-- | src/main/java/gregtech/api/util/GT_Recipe.java | 1 |
1 files changed, 0 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 b281b808bf..d459d4626d 100644 --- a/src/main/java/gregtech/api/util/GT_Recipe.java +++ b/src/main/java/gregtech/api/util/GT_Recipe.java @@ -713,7 +713,6 @@ public class GT_Recipe implements Comparable<GT_Recipe> { this.mPersistentHash = 1; else this.mPersistentHash = aPersistentHash; - GT_AssemblyLineUtils.addRecipeToCache(this); } } |