Skip to content

Commit e7ca1d8

Browse files
committed
Merge remote-tracking branch 'upstream'
2 parents ad5408b + cd12ed6 commit e7ca1d8

File tree

57 files changed

+154
-124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+154
-124
lines changed

.github/workflows/update_modrinth_deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
branch: ["master", "1.21.11", "1.21.10", "1.21.8"]
15+
branch: ["master", "1.21.11"]
1616
steps:
1717
- name: Update Modrinth Dependencies
1818
uses: Wurst-Imperium/update-modrinth-deps@v1

gradle.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ org.gradle.configuration-cache=true
66
# Fabric Properties
77
# check these at https://fabricmc.net/develop/ and
88
# https://modrinth.com/mod/fabric-api/versions
9-
minecraft_version=26.1
10-
loader_version=0.18.4
9+
minecraft_version=26.1.1
10+
loader_version=0.18.6
1111
loom_version=1.15-SNAPSHOT
1212

1313
# Fabric API
14-
fabric_api_version=0.144.3+26.1
14+
fabric_api_version=0.145.3+26.1.1
1515

1616
# Mod Properties
1717
mod_version=v7.53.1-CevAPI-MC26.1
18-
fork_release_version=0.49
18+
fork_release_version=0.50
1919
maven_group=net.wurstclient
2020
archives_base_name=Wurst-Client
2121
mod_loader=Fabric
@@ -24,6 +24,6 @@ mod_loader=Fabric
2424
gh_repo_id=cev-api/Wurst7-CevAPI
2525

2626
# Dependencies
27-
# check at https://modrinth.com/mod/sodium/versions?l=fabric&g=26.1
28-
sodium_version=mc26.1-0.8.7-fabric
27+
# check at https://modrinth.com/mod/sodium/versions?l=fabric&g=26.1.1
28+
sodium_version=mc26.1.1-0.8.9-fabric
2929
do_mod_compat_test=true

src/gametest/java/net/wurstclient/gametest/SingleplayerTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ protected final void clearInventory()
100100
input.pressKey(GLFW.GLFW_KEY_T);
101101
input.typeChars("/clear");
102102
input.pressKey(GLFW.GLFW_KEY_ENTER);
103+
context.waitTicks(2);
103104
}
104105

105106
protected final void clearParticles()

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ protected void runImpl()
4040
runCommand("gamemode creative");
4141
runCommand("kill @e[type=item]");
4242
clearInventory();
43-
context.waitTick();
4443
clearParticles();
4544
clearChat();
4645
context.waitTick();

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ protected void runImpl()
4848

4949
// Clean up
5050
clearInventory();
51-
context.waitTick();
5251
clearChat();
5352
waitForHandSwing();
5453
}

src/main/java/net/wurstclient/WurstClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public enum WurstClient
6262
public static IMinecraftClient IMC;
6363

6464
public static final String VERSION = "7.53.1";
65-
public static final String MC_VERSION = "26.1";
65+
public static final String MC_VERSION = "26.1.1";
6666

6767
private PlausibleAnalytics plausible;
6868
private EventManager eventManager;

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ public AntiBlindHack()
2323
setCategory(Category.RENDER);
2424
}
2525

26-
// See BackgroundRendererMixin, LightmapTextureManagerMixin,
27-
// WorldRendererMixin, ClientPlayerEntityMixin.hasStatusEffect()
26+
// See CameraMixin.onExtractRenderState(),
27+
// LivingEntityMixin.onGetEffectFadeFactor(),
28+
// LocalPlayerMixin.hasEffect()
2829
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ public AntiWobbleHack()
2121
setCategory(Category.RENDER);
2222
}
2323

24-
// See GameRendererMixin.wurstNauseaLerp()
24+
// See GameRendererMixin.onRenderWorldNauseaLerp()
2525
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,5 +157,5 @@ public void onRefresh(String draftMessage,
157157
lastRefreshTime = System.currentTimeMillis();
158158
}
159159

160-
// See ChatInputSuggestorMixin
160+
// See CommandSuggestionsMixin
161161
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ public BarrierEspHack()
2020
setCategory(Category.RENDER);
2121
}
2222

23-
// See ClientWorldMixin
23+
// See ClientLevelMixin
2424
}

0 commit comments

Comments
 (0)