Skip to content

Commit

Permalink
Exclude tst
Browse files Browse the repository at this point in the history
  • Loading branch information
RealSilverMoon committed May 14, 2024
1 parent 1c74f63 commit e525601
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,8 @@ public static void makeRouting(GT_NEI_DefaultHandler recipe, int recipeIndex, En
.map(v -> v.item)
.collect(Collectors.toList());
for (ItemStack machine : machineList) {
if (getMetaTileEntity(machine) instanceof GT_MetaTileEntity_MultiBlockBase) {
if (getMetaTileEntity(machine) instanceof GT_MetaTileEntity_MultiBlockBase mte
&& !mte.mName.startsWith("TST")) {
NetworkLoader.instance.sendToServer(
new MessageRouting(
new BoxRoutings(
Expand Down

0 comments on commit e525601

Please sign in to comment.