Skip to content

Commit 1ed949f

Browse files
authored
Fix Wyvern tool recipe (#319)
* Fix Axe/Pickaxe/Axe of the Wyvern Recipe * spotless
1 parent 4114cab commit 1ed949f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/java/com/github/gtexpert/core/integration/deda/recipes/DraconicTierupRecipe.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
import com.brandon3055.draconicevolution.DEFeatures;
1010

11-
import gregtech.api.GTValues;
1211
import gregtech.api.items.toolitem.ToolHelper;
1312
import gregtech.api.recipes.ModHandler;
1413
import gregtech.api.recipes.RecipeMap;
@@ -38,7 +37,7 @@ public static void init() {
3837
new GTRecipeItemInput(ToolItems.AXE.get(GTEMaterials.Draconium)).setNBTMatchingCondition(
3938
NBTMatcher.RECURSIVE_EQUAL_TO, NBTCondition.create(
4039
NBTTagType.COMPOUND, ToolHelper.TOOL_TAG_KEY, NBTCondition.create(
41-
NBTTagType.STRING, "Material", GTValues.MODID + ":draconium"))),
40+
NBTTagType.STRING, "Material", GTEValues.MODID + ":draconium"))),
4241
new ItemStack(DEFeatures.wyvernAxe),
4342
Tier.WYVERN, 2);
4443

@@ -48,7 +47,7 @@ public static void init() {
4847
new GTRecipeItemInput(ToolItems.PICKAXE.get(GTEMaterials.Draconium)).setNBTMatchingCondition(
4948
NBTMatcher.RECURSIVE_EQUAL_TO, NBTCondition.create(
5049
NBTTagType.COMPOUND, ToolHelper.TOOL_TAG_KEY, NBTCondition.create(
51-
NBTTagType.STRING, "Material", GTValues.MODID + ":draconium"))),
50+
NBTTagType.STRING, "Material", GTEValues.MODID + ":draconium"))),
5251
new ItemStack(DEFeatures.wyvernPick),
5352
Tier.WYVERN, 2);
5453

@@ -58,7 +57,7 @@ public static void init() {
5857
new GTRecipeItemInput(ToolItems.SHOVEL.get(GTEMaterials.Draconium)).setNBTMatchingCondition(
5958
NBTMatcher.RECURSIVE_EQUAL_TO, NBTCondition.create(
6059
NBTTagType.COMPOUND, ToolHelper.TOOL_TAG_KEY, NBTCondition.create(
61-
NBTTagType.STRING, "Material", GTValues.MODID + ":draconium"))),
60+
NBTTagType.STRING, "Material", GTEValues.MODID + ":draconium"))),
6261
new ItemStack(DEFeatures.wyvernShovel),
6362
Tier.WYVERN, 2);
6463

0 commit comments

Comments
 (0)