From 4c3e9c65aa72548857e7368d0c7b756274fe6535 Mon Sep 17 00:00:00 2001 From: Jkibbels Date: Sun, 22 Dec 2024 22:30:42 -0500 Subject: [PATCH] [factions-and-banking] Extra detail --- src/main/java/jesse/keeblarcraft/mixin/PlayerMixin.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/jesse/keeblarcraft/mixin/PlayerMixin.java b/src/main/java/jesse/keeblarcraft/mixin/PlayerMixin.java index 7401b30..fed0ca7 100644 --- a/src/main/java/jesse/keeblarcraft/mixin/PlayerMixin.java +++ b/src/main/java/jesse/keeblarcraft/mixin/PlayerMixin.java @@ -15,6 +15,9 @@ import net.minecraft.item.ItemStack; // Tutorial I referenced for this knowledge (outside fabric wiki): https://www.youtube.com/watch?v=HQUkWjMWTik // MAKE SURE YOU READ fabric_mod.json and the keeblarcraft.mixin.json!! These injections are not instantiated anywhere else because mixins are special // because all this code is essentially injected (pasted) into their respective areas during compilation. +// +// PLEASE SEE https://wiki.fabricmc.net/tutorial:mixin_injects FOR ALL THE PARAMETER TYPES OF INJECTION (you will likely have a question about all the types after reading +// bullet point #3 in the below injection explanation because I only explain 'Z' in that case) @Mixin(PlayerEntity.class) // *THIS* CLASS MUST BE ABSTRACT - BUT NOT TRUE FOR EVERY MIXIN