Skip to content

Commit

Permalink
Fix replicator
Browse files Browse the repository at this point in the history
  • Loading branch information
RealSilverMoon committed Jun 1, 2024
1 parent 2201913 commit 8575852
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ public static void checkRouting(GTMachineBox box) {
recipeMap = RecipeMaps.replicatorRecipes;
Materials replicatorItem = null;
for (ItemStack item : ItemInputs) {
if (Behaviour_DataOrb.getDataName(item) == null) continue;
if (Behaviour_DataOrb.getDataName(item).isEmpty()) continue;
replicatorItem = Element.get(Behaviour_DataOrb.getDataName(item)).mLinkedMaterials
.get(0);
break;
Expand Down

0 comments on commit 8575852

Please sign in to comment.