forked from RepoMirrors/baritone
Fix some mixins which referenced a non-obfuscated method
This commit is contained in:
parent
559bc46702
commit
d17122a777
|
@ -34,7 +34,8 @@ public class MixinGameSettings {
|
|||
method = "isKeyDown",
|
||||
at = @At(
|
||||
value = "INVOKE",
|
||||
target = "org/lwjgl/input/Keyboard.isKeyDown(I)Z"
|
||||
target = "org/lwjgl/input/Keyboard.isKeyDown(I)Z",
|
||||
remap = false
|
||||
)
|
||||
)
|
||||
private static boolean isKeyDown(int keyCode) {
|
||||
|
|
|
@ -37,7 +37,8 @@ public class MixinGuiContainer {
|
|||
},
|
||||
at = @At(
|
||||
value = "INVOKE",
|
||||
target = "org/lwjgl/input/Keyboard.isKeyDown(I)Z"
|
||||
target = "org/lwjgl/input/Keyboard.isKeyDown(I)Z",
|
||||
remap = false
|
||||
)
|
||||
)
|
||||
private boolean isKeyDown(int keyCode) {
|
||||
|
|
|
@ -38,7 +38,8 @@ public class MixinGuiScreen {
|
|||
},
|
||||
at = @At(
|
||||
value = "INVOKE",
|
||||
target = "org/lwjgl/input/Keyboard.isKeyDown(I)Z"
|
||||
target = "org/lwjgl/input/Keyboard.isKeyDown(I)Z",
|
||||
remap = false
|
||||
)
|
||||
)
|
||||
private static boolean isKeyDown(int keyCode) {
|
||||
|
|
|
@ -84,7 +84,8 @@ public class MixinMinecraft {
|
|||
method = "runTickKeyboard",
|
||||
at = @At(
|
||||
value = "INVOKE",
|
||||
target = "org/lwjgl/input/Keyboard.isKeyDown(I)Z"
|
||||
target = "org/lwjgl/input/Keyboard.isKeyDown(I)Z",
|
||||
remap = false
|
||||
)
|
||||
)
|
||||
private boolean Keyboard$isKeyDown(int keyCode) {
|
||||
|
|
Loading…
Reference in New Issue