Skip to content

Commit

Permalink
Fix wrong class for VehicleMoveC2SAccessor (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paddyk45 authored Apr 1, 2024
1 parent 12f9928 commit abb9663
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package anticope.rejects.mixin;

import net.minecraft.network.packet.c2s.play.PlayerMoveC2SPacket;
import net.minecraft.network.packet.c2s.play.VehicleMoveC2SPacket;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Mutable;
import org.spongepowered.asm.mixin.gen.Accessor;

@Mixin(PlayerMoveC2SPacket.class)
@Mixin(VehicleMoveC2SPacket.class)
public interface VehicleMoveC2SPacketAccessor {
@Mutable
@Accessor("x")
Expand Down

0 comments on commit abb9663

Please sign in to comment.