Skip to content

Commit bff697a

Browse files
committed
temp push
1 parent 44e64c7 commit bff697a

4 files changed

Lines changed: 28 additions & 2 deletions

File tree

57.4 KB
Binary file not shown.
34 KB
Binary file not shown.

src/main/java/gtexpert/integration/deda/recipemaps/tierup/TierUpRecipeProperty.java

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22

33
import net.minecraft.client.Minecraft;
44
import net.minecraft.client.resources.I18n;
5+
import net.minecraft.nbt.NBTBase;
6+
7+
import org.jetbrains.annotations.NotNull;
58

69
import com.brandon3055.draconicevolution.lib.ToolUpgradeRecipe;
710

8-
import gregtech.api.recipes.recipeproperties.RecipeProperty;
11+
import gregtech.api.recipes.properties.RecipeProperty;
912

1013
public class TierUpRecipeProperty extends RecipeProperty<ToolUpgradeRecipe> {
1114

@@ -23,6 +26,16 @@ public static TierUpRecipeProperty getInstance() {
2326
return INSTANCE;
2427
}
2528

29+
@Override
30+
public @NotNull NBTBase serialize(@NotNull Object value) {
31+
return null;
32+
}
33+
34+
@Override
35+
public @NotNull Object deserialize(@NotNull NBTBase nbt) {
36+
return null;
37+
}
38+
2639
@Override
2740
public void drawInfo(Minecraft minecraft, int x, int y, int color, Object value) {
2841
minecraft.fontRenderer.drawString(I18n.format("recipemap.draconic_fusion_tier_up.property.1"), x, y, color);

src/main/java/gtexpert/integration/deda/recipemaps/upgrade/UpgradeRecipeProperty.java

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22

33
import net.minecraft.client.Minecraft;
44
import net.minecraft.client.resources.I18n;
5+
import net.minecraft.nbt.NBTBase;
6+
7+
import org.jetbrains.annotations.NotNull;
58

69
import com.brandon3055.draconicevolution.api.itemupgrade.FusionUpgradeRecipe;
710

8-
import gregtech.api.recipes.recipeproperties.RecipeProperty;
11+
import gregtech.api.recipes.properties.RecipeProperty;
912

1013
public class UpgradeRecipeProperty extends RecipeProperty<FusionUpgradeRecipe> {
1114

@@ -23,6 +26,16 @@ public static UpgradeRecipeProperty getInstance() {
2326
return INSTANCE;
2427
}
2528

29+
@Override
30+
public @NotNull NBTBase serialize(@NotNull Object value) {
31+
return null;
32+
}
33+
34+
@Override
35+
public @NotNull Object deserialize(@NotNull NBTBase nbt) {
36+
return null;
37+
}
38+
2639
@Override
2740
public void drawInfo(Minecraft minecraft, int x, int y, int color, Object value) {
2841
minecraft.fontRenderer.drawString(I18n.format("recipemap.draconic_fusion_upgrade.property.1"), x, y, color);

0 commit comments

Comments
 (0)