Skip to content

Commit

Permalink
Add missing ItemStack mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
Su5eD committed Jul 29, 2023
1 parent 3348568 commit b8e1029
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package net.fabricmc.fabric.mixin.item;

import net.fabricmc.fabric.api.item.v1.FabricItemStack;

import net.minecraft.item.ItemStack;

import org.spongepowered.asm.mixin.Mixin;

@Mixin(ItemStack.class)
public abstract class ItemStackMixin implements FabricItemStack {

}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"package": "net.fabricmc.fabric.mixin.item",
"compatibilityLevel": "JAVA_16",
"mixins": [
"ItemMixin"
"ItemMixin",
"ItemStackMixin"
],
"injectors": {
"defaultRequire": 1
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ fabric-client-tags-api-v1-version=1.1.1
loom.platform=forge
forge_version=1.20.1-47.1.3
pack_format=15
forgified_version=1.6.0
forgified_version=1.6.1

0 comments on commit b8e1029

Please sign in to comment.