Skip to content

Commit 6d7b123

Browse files
committed
Fix weird default case for PLATE_MATERIAL component
1 parent 682a195 commit 6d7b123

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
@@ -152,8 +152,7 @@ public class CraftingComponent {
152152
case IV -> Materials.TungstenSteel;
153153
case LuV -> Materials.HSSG;
154154
case ZPM -> Materials.HSSE;
155-
case UV -> Materials.Darmstadtium;
156-
default -> Materials.TungstenSteel;
155+
default -> Materials.Darmstadtium;
157156
};
158157

159158
/** Tiered plates used in select machine recipes */

0 commit comments

Comments
 (0)