Skip to content

Commit fb2a621

Browse files
committed
Merge branch 'master' into feature/renderer
2 parents 4248e14 + 835f60b commit fb2a621

File tree

3 files changed

+0
-22
lines changed

3 files changed

+0
-22
lines changed

common/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ dependencies {
2929
// Baritone
3030
// modImplementation("baritone-api:baritone-api:1.10.2")
3131
modImplementation("baritone-api:baritone-unoptimized-fabric:1.10.2")
32-
33-
testImplementation(kotlin("test"))
3432
}
3533

3634
tasks.test {

common/src/main/java/com/lambda/mixin/entity/ClientPlayerEntityMixin.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,6 @@ void onMove(MovementType movementType, Vec3d movement, CallbackInfo ci) {
5252
this.autoJump(currX - prevX, currZ - prevZ);
5353
}
5454

55-
@Redirect(method = "tickMovement", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/network/ClientPlayerEntity;isUsingItem()Z"))
56-
boolean onSlowDown(ClientPlayerEntity entity) {
57-
if (EventFlow.post(new MovementEvent.SlowDown()).isCanceled()) return false;
58-
return isUsingItem();
59-
}
60-
6155
@Redirect(method = "tickMovement", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/input/Input;tick(ZF)V"))
6256
void processMovement(Input input, boolean slowDown, float slowDownFactor) {
6357
input.tick(slowDown, slowDownFactor);

common/src/test/kotlin/TaskTests.kt

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)