Skip to content

Commit f55862a

Browse files
committed
7.50.3 Update
1 parent 5b0c3ac commit f55862a

File tree

3 files changed

+3
-25
lines changed

3 files changed

+3
-25
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Wurst Client v7.50.2 (MC1.21.8) - Modified by CevAPI
1+
# Wurst Client v7.50.3 (MC1.21.8) - Modified by CevAPI
22

33
![CevAPI Logo](https://i.imgur.com/Uju0ZZJ.png)
44

src/main/java/net/wurstclient/hacks/CheatDetectorHack.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ private String formatDouble(double value)
474474

475475
private double getClearanceAboveGround(Entity entity, int maxDepth)
476476
{
477-
ClientWorld world = (ClientWorld)entity.getEntityWorld();
477+
ClientWorld world = (ClientWorld)entity.getWorld();
478478
Box box = entity.getBoundingBox();
479479
double entityBottom = box.minY;
480480

@@ -519,7 +519,7 @@ private double getClearanceAboveGround(Entity entity, int maxDepth)
519519

520520
private boolean isBoatSupported(BoatEntity boat)
521521
{
522-
ClientWorld world = (ClientWorld)boat.getEntityWorld();
522+
ClientWorld world = (ClientWorld)boat.getWorld();
523523
Box box = boat.getBoundingBox();
524524
double sampleMinY = box.minY - 0.2;
525525
double sampleMaxY = box.minY - 0.05;

src/main/java/net/wurstclient/mixin/DownloaderMixin.java

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,6 @@
1515
import org.spongepowered.asm.mixin.Shadow;
1616
import org.spongepowered.asm.mixin.injection.At;
1717

18-
<<<<<<< HEAD
19-
import com.llamalad7.mixinextras.injector.ModifyExpressionValue;
20-
import com.llamalad7.mixinextras.sugar.Local;
21-
22-
import net.cevapi.security.ResourcePackProtector;
23-
import net.minecraft.util.Downloader;
24-
25-
@Mixin(Downloader.class)
26-
public abstract class DownloaderMixin
27-
=======
2818
import com.llamalad7.mixinextras.injector.wrapoperation.Operation;
2919
import com.llamalad7.mixinextras.injector.wrapoperation.WrapOperation;
3020

@@ -35,22 +25,11 @@ public abstract class DownloaderMixin
3525

3626
@Mixin(Downloader.class)
3727
public abstract class DownloaderMixin implements AutoCloseable
38-
>>>>>>> upstream/1.21.8
3928
{
4029
@Shadow
4130
@Final
4231
private Path directory;
4332

44-
<<<<<<< HEAD
45-
@ModifyExpressionValue(method = "method_55485",
46-
at = @At(value = "INVOKE",
47-
target = "Ljava/nio/file/Path;resolve(Ljava/lang/String;)Ljava/nio/file/Path;"))
48-
private Path cevapi$rewriteDownloadPath(Path original,
49-
@Local(argsOnly = true) UUID packId)
50-
{
51-
return ResourcePackProtector.remapDownloadPath(directory, original,
52-
packId);
53-
=======
5433
/**
5534
* Patches a fingerprinting vulnerability by creating a separate cache
5635
* folder for each Minecraft account.
@@ -85,6 +64,5 @@ private Path wrapResolve(Path instance, String filename,
8564

8665
return result.getParent().resolve(uuid.toString())
8766
.resolve(result.getFileName());
88-
>>>>>>> upstream/1.21.8
8967
}
9068
}

0 commit comments

Comments
 (0)