Skip to content

Commit

Permalink
added remap = false
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Mar 20, 2023
1 parent e2ed24f commit 92bcd38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;

@Mixin(EntityPackets.class)
@Mixin(value = EntityPackets.class, remap = false)
public abstract class MixinEntityPackets extends EntityRewriter<ClientboundPackets1_19_3, Protocol1_19_4To1_19_3> {

public MixinEntityPackets(Protocol1_19_4To1_19_3 protocol) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;

@Mixin(Protocol1_19_4To1_19_3.class)
@Mixin(value = Protocol1_19_4To1_19_3.class, remap = false)
public class MixinProtocol1_19_4to1_19_3 {

@Inject(method = "init", at = @At("RETURN"))
Expand Down

0 comments on commit 92bcd38

Please sign in to comment.