Skip to content

Commit 2e1e55b

Browse files
committed
条件分岐修正
1 parent 1664748 commit 2e1e55b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/github/gtexpert/gtmt/integration/storagedrawers/recipes/UpgradesLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public static void upgradeStorage() {
6666
addStorageUpgradeConvertRecipe(Mods.StorageDrawers.getItem("upgrade_storage", 1, 4), output, material);
6767
}
6868

69-
if (!material.hasProperty(PropertyKey.INGOT) || !material.hasProperty(PropertyKey.GEM)) {
69+
if (!material.hasProperty(PropertyKey.INGOT) && !material.hasProperty(PropertyKey.GEM)) {
7070
RecipeMaps.EXTRUDER_RECIPES.recipeBuilder()
7171
.input(OrePrefix.dust, material)
7272
.notConsumable(MetaItems.SHAPE_EXTRUDER_ROD_LONG)

0 commit comments

Comments
 (0)