This commit is contained in:
KäseToatz
2024-07-15 09:28:55 +02:00
parent e4827cea03
commit 6ab4519093
13 changed files with 219 additions and 70 deletions

View File

@ -0,0 +1,13 @@
package com.kasetoatz.tridenthacks.mixin;
import net.minecraft.network.packet.c2s.play.PlayerMoveC2SPacket;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Mutable;
import org.spongepowered.asm.mixin.gen.Accessor;
@Mixin(PlayerMoveC2SPacket.class)
public interface PlayerMoveC2SPacketMixin {
@Accessor("onGround")
@Mutable
void setOnGround(boolean onGround);
}