Skip to content

Commit

Permalink
Fix refmap warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Jan 5, 2025
1 parent d18743e commit 8e5a5b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ abstract class MinecraftServerMixin implements MinecraftServerAccess {

@Inject(
method = "tickServer",
at = @At(value = "INVOKE", target = "Lorg/slf4j/Logger;info(Ljava/lang/String;Ljava/lang/Object;)V", ordinal = 0)
at = @At(value = "INVOKE", target = "Lorg/slf4j/Logger;info(Ljava/lang/String;Ljava/lang/Object;)V", ordinal = 0, remap = false)
)
private void injectPause(final BooleanSupplier keepTicking, final CallbackInfo ci) {
this.tickingState = TickingState.NOT_TICKING;
Expand Down

0 comments on commit 8e5a5b1

Please sign in to comment.