Skip to content

Commit af4dc43

Browse files
committed
Update compatibility with lithium 0.14.0-beta.1
closes #4975
1 parent 38b6659 commit af4dc43

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ baritone_version=1.21
2020
sodium_version=mc1.21-0.6.0-beta.2-fabric
2121

2222
# Lithium (https://github.com/CaffeineMC/lithium-fabric)
23-
lithium_version=mc1.21.1-0.13.0
23+
lithium_version=mc1.21.1-0.14.0-beta.1
2424

2525
# Iris (https://github.com/IrisShaders/Iris)
2626
iris_version=1.7.3+1.21

src/main/java/meteordevelopment/meteorclient/mixin/lithium/ChunkAwareBlockCollisionSweeperMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
package meteordevelopment.meteorclient.mixin.lithium;
77

8-
import me.jellysquid.mods.lithium.common.entity.movement.ChunkAwareBlockCollisionSweeper;
98
import meteordevelopment.meteorclient.MeteorClient;
109
import meteordevelopment.meteorclient.events.world.CollisionShapeEvent;
10+
import net.caffeinemc.mods.lithium.common.entity.movement.ChunkAwareBlockCollisionSweeper;
1111
import net.minecraft.block.BlockState;
1212
import net.minecraft.block.ShapeContext;
1313
import net.minecraft.client.MinecraftClient;

src/main/java/meteordevelopment/meteorclient/mixin/lithium/LithiumEntityCollisionsMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
package meteordevelopment.meteorclient.mixin.lithium;
77

8-
import me.jellysquid.mods.lithium.common.entity.LithiumEntityCollisions;
98
import meteordevelopment.meteorclient.systems.modules.Modules;
109
import meteordevelopment.meteorclient.systems.modules.world.Collisions;
10+
import net.caffeinemc.mods.lithium.common.entity.LithiumEntityCollisions;
1111
import net.minecraft.util.math.Box;
1212
import net.minecraft.world.border.WorldBorder;
1313
import org.spongepowered.asm.mixin.Mixin;

src/main/java/meteordevelopment/meteorclient/systems/modules/movement/Jesus.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,15 +293,13 @@ private void onSendPacket(PacketEvent.Send event) {
293293
private boolean waterShouldBeSolid() {
294294
if (EntityUtils.getGameMode(mc.player) == GameMode.SPECTATOR || mc.player.getAbilities().flying) return false;
295295

296-
297296
if (mc.player.getVehicle() != null) {
298297
EntityType<?> vehicle = mc.player.getVehicle().getType();
299298
if (vehicle == EntityType.BOAT || vehicle == EntityType.CHEST_BOAT) return false;
300299
}
301300

302301
if (Modules.get().get(Flight.class).isActive()) return false;
303302

304-
305303
if (dipIfBurning.get() && mc.player.isOnFire()) return false;
306304

307305
if (dipOnSneakWater.get() && mc.options.sneakKey.isPressed()) return false;

0 commit comments

Comments
 (0)