Skip to content

Commit 50f4a23

Browse files
committed
Fix weird default case in COIL_MATERIAL Component
1 parent 7c31db9 commit 50f4a23

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/main/java/gregtech/loaders/recipe/CraftingComponent.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,7 @@ public class CraftingComponent {
268268
case IV -> Materials.TungstenSteel;
269269
case LuV -> Materials.HSSG;
270270
case ZPM -> Materials.Naquadah;
271-
case UV -> Materials.NaquadahAlloy;
272-
default -> Materials.Nichrome;
271+
default -> Materials.NaquadahAlloy;
273272
};
274273

275274
/** Electric Furnace heating coils */

0 commit comments

Comments
 (0)