Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 2d7a1f6

Browse files
committed
sync VP-1.2.7-1.16.5
1 parent 589fe07 commit 2d7a1f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/localmc/tools/hardcodepatcher/mixin/LiteralTextMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import org.spongepowered.asm.mixin.injection.Inject;
99
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
1010

11-
@Mixin(value = LiteralText.class)
11+
@Mixin(value = LiteralText.class, priority = -Integer.MAX_VALUE)
1212
public abstract class LiteralTextMixin {
1313
@Accessor("string")
1414
abstract String getString_();

src/main/java/org/localmc/tools/hardcodepatcher/mixin/TextRendererMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import org.spongepowered.asm.mixin.injection.At;
77
import org.spongepowered.asm.mixin.injection.ModifyArgs;
88

9-
@Mixin(value = TextRenderer.class)
9+
@Mixin(value = TextRenderer.class, priority = -Integer.MAX_VALUE)
1010
public class TextRendererMixin {
1111
//GUI Transcription
1212
@ModifyArgs(

0 commit comments

Comments
 (0)