Skip to content

Commit

Permalink
Update shadowed craftingList type
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyWing committed Jun 10, 2024
1 parent 2d1818b commit d1f210d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;

import java.util.List;
import java.util.Set;
import java.util.WeakHashMap;

@Mixin(value = DualityInterface.class, remap = false)
Expand All @@ -36,7 +36,7 @@ public abstract class MixinDualityInterface {
@Final
private UpgradeInventory upgrades;
@Shadow
private List<ICraftingPatternDetails> craftingList;
private Set<ICraftingPatternDetails> craftingList;

@Shadow
protected abstract void updateCraftingList();
Expand Down

0 comments on commit d1f210d

Please sign in to comment.