1
0
mirror of https://github.com/cabaletta/baritone synced 2025-02-21 14:37:00 +00:00

Update mappings to 20200515-1.15.1

This commit is contained in:
Brady 2020-05-15 21:03:08 -05:00
parent b7870d059c
commit 410ea059fc
No known key found for this signature in database
GPG Key ID: 73A788379A197567
3 changed files with 4 additions and 4 deletions

View File

@ -85,7 +85,7 @@ task sourceJar(type: Jar, dependsOn: classes) {
}
minecraft {
mappings channel: 'snapshot', version: '20200213-1.15.1'
mappings channel: 'snapshot', version: '20200515-1.15.1'
if (getProject().hasProperty("baritone.forge_build")) {
reobfMappings 'searge'

View File

@ -55,7 +55,7 @@ public class MixinCommandSuggestionHelper {
private CompletableFuture<Suggestions> field_228107_p_;
@Inject(
method = "func_228111_a_",
method = "init",
at = @At("HEAD"),
cancellable = true
)

View File

@ -33,7 +33,7 @@ public class PlayerMovementInput extends MovementInput {
this.moveStrafe = 0.0F;
this.moveForward = 0.0F;
jump = handler.isInputForcedDown(Input.JUMP); // oppa gangnam style
this.jump = handler.isInputForcedDown(Input.JUMP); // oppa gangnam style
if (this.forwardKeyDown = handler.isInputForcedDown(Input.MOVE_FORWARD)) {
this.moveForward++;
@ -51,7 +51,7 @@ public class PlayerMovementInput extends MovementInput {
this.moveStrafe--;
}
if (this.field_228350_h_ = handler.isInputForcedDown(Input.SNEAK)) {
if (this.sneaking = handler.isInputForcedDown(Input.SNEAK)) {
this.moveStrafe *= 0.3D;
this.moveForward *= 0.3D;
}