Skip to content

Commit

Permalink
Fix MaterialStack Mixin Overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
IntegerLimit committed Dec 29, 2024
1 parent afb8663 commit bce0f01
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import net.minecraft.item.crafting.Ingredient;

import org.apache.commons.lang3.NotImplementedException;
import org.jetbrains.annotations.Nullable;
import org.spongepowered.asm.mixin.Final;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
Expand Down Expand Up @@ -69,4 +70,12 @@ public Ingredient toMcIngredient() {
public IResourceStack multiply(Number num) {
return (IResourceStack) copy(num.longValue());
}

@Override
public @Nullable String getMark() {
return null;
}

@Override
public void setMark(String mark) {}
}

0 comments on commit bce0f01

Please sign in to comment.