Skip to content

Commit f8cab98

Browse files
committed
Merge remote-tracking branch 'upstream/1.21.8' into 1.21.8
2 parents 808e69f + 767a08a commit f8cab98

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ loom_version=1.13-SNAPSHOT
1818
fabric_version=0.136.1+1.21.8
1919

2020
# Mod Properties
21-
mod_version=v7.51.2-MC1.21.8
21+
mod_version=v7.51.2-CevAPI-MC1.21.8
2222
maven_group=net.wurstclient
2323
archives_base_name=Wurst-Client
2424
mod_loader=Fabric

src/gametest/java/net/wurstclient/gametest/WurstTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ private void testInWorld(ClientGameTestContext context,
8989
world.waitForChunksRender();
9090

9191
assertScreenshotEquals(context, "in_game",
92-
"https://i.imgur.com/EfzN9Cd.png");
92+
IS_MOD_COMPAT_TEST ? "https://i.imgur.com/VxbGFrb.png"
93+
: "https://i.imgur.com/2UvurYl.png");
9394

9495
LOGGER.info("Recording debug menu");
9596
input.pressKey(GLFW.GLFW_KEY_F3);

src/gametest/java/net/wurstclient/gametest/tests/FreecamHackTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,16 @@ public static void testFreecamHack(ClientGameTestContext context,
4141
input.holdKeyFor(GLFW.GLFW_KEY_S, 2);
4242
input.holdKeyFor(GLFW.GLFW_KEY_SPACE, 1);
4343
assertScreenshotEquals(context, "freecam_moved",
44-
"https://i.imgur.com/pZDlYfH.png");
44+
WurstTest.IS_MOD_COMPAT_TEST ? "https://i.imgur.com/oZUpI8c.png"
45+
: "https://i.imgur.com/0aDVqQP.png");
4546
clearChat(context);
4647

4748
// Enable tracer
4849
runWurstCommand(context, "setcheckbox Freecam tracer on");
4950
context.waitTick();
5051
assertScreenshotEquals(context, "freecam_tracer",
51-
"https://i.imgur.com/jYqDFzE.png");
52+
WurstTest.IS_MOD_COMPAT_TEST ? "https://i.imgur.com/teKaxAK.png"
53+
: "https://i.imgur.com/DQgyvI4.png");
5254
clearChat(context);
5355

5456
// Clean up

0 commit comments

Comments
 (0)