New Modules and update to 1.19.3 (#186)

This commit is contained in:
SodaXwX
2022-12-23 21:45:57 +08:00
committed by GitHub
parent 64933773a7
commit 3c14b3bc8f
33 changed files with 663 additions and 454 deletions

View File

@@ -0,0 +1,14 @@
package anticope.rejects.events;
import net.minecraft.item.ItemStack;
public class StopUsingItemEvent {
private static final StopUsingItemEvent INSTANCE = new StopUsingItemEvent();
public ItemStack itemStack;
public static StopUsingItemEvent get(ItemStack itemStack) {
INSTANCE.itemStack = itemStack;
return INSTANCE;
}
}