Skip to content

Commit

Permalink
Fix: Mixin not being remapped
Browse files Browse the repository at this point in the history
  • Loading branch information
onebeastchris authored Sep 3, 2024
1 parent b738f5b commit 833d0bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public class ServerPlayerInteractionManagerMixin {
@Redirect(method = "handleBlockBreakAction",
slice = @Slice(from = @At(value = "CONSTANT", args = "stringValue=Mismatch in destroy block pos: {} {}", ordinal = 0)),
at = @At(value = "INVOKE", target = "Lorg/slf4j/Logger;warn(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V", remap = false))
at = @At(value = "INVOKE", target = "Lorg/slf4j/Logger;warn(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V"))
private void GeyserHacks$onMismatchInDestroyBlockPos(org.slf4j.Logger logger, String format, Object arg1, Object arg2) {
// do nothing
}
Expand Down

0 comments on commit 833d0bb

Please sign in to comment.