Skip to content

Commit 9359421

Browse files
committed
Update NiceWurst
1 parent 3cbe5cf commit 9359421

3 files changed

Lines changed: 17 additions & 16 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fabric_api_version=0.146.1+26.1.2
1515

1616
# Mod Properties
1717
mod_version=v7.53.1-CevAPI-MC26.1.2
18-
fork_release_version=0.51
18+
fork_release_version=0.52
1919
maven_group=net.wurstclient
2020
archives_base_name=Wurst-Client
2121
mod_loader=Fabric

src/main/java/net/wurstclient/nicewurst/NiceWurstModule.java

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -83,23 +83,24 @@ public final class NiceWurstModule
8383

8484
static
8585
{
86-
ALLOWED_HACKS.put(Category.BLOCKS,
87-
Set.of("AutoBuild", "AutoSign", "AutoTool", "BuildRandom",
88-
"Excavator", "HandNoClip", "InstantBunker", "ScaffoldWalk",
89-
"TemplateTool", "TargetPlace", "SilkOnly", "MusicAura"));
86+
ALLOWED_HACKS.put(Category.BLOCKS,
87+
Set.of("AutoBuild", "AutoSign", "AutoTool", "BuildRandom",
88+
"BedBreakAura", "Excavator", "HandNoClip", "InstantBunker",
89+
"MusicAura", "ScaffoldWalk", "SilkOnly", "TargetPlace",
90+
"TemplateTool"));
9091

9192
ALLOWED_HACKS.put(Category.MOVEMENT, Set.of("BunnyHop", "AutoSprint",
9293
"AutoWalk", "AutoSwim", "Dolphin", "SafeWalk", "Sneak", "InvWalk"));
9394

94-
ALLOWED_HACKS.put(Category.COMBAT, Set.of("AutoRespawn", "AutoTotem",
95-
"AutoLeave", "WindChargeKey", "PearlIntercept"));
95+
ALLOWED_HACKS.put(Category.COMBAT, Set.of("AutoRespawn", "AutoTotem",
96+
"AutoLeave", "PearlIntercept", "ShieldSwing", "WindChargeKey"));
9697

97-
ALLOWED_HACKS.put(Category.RENDER,
98-
Set.of("Breadcrumbs", "DurabilityHUD", "Fullbright", "HealthTags",
99-
"MobHealth", "NameTags", "NewChunks", "NewerNewChunks",
100-
"NoBackground", "NoFireOverlay", "NoVignette", "NoWeather",
101-
"Freecam", "Waypoints", "HideWurst", "ElytraInfo", "Mapa",
102-
"BedrockStash"));
98+
ALLOWED_HACKS.put(Category.RENDER,
99+
Set.of("Breadcrumbs", "DurabilityHUD", "Fullbright", "HealthTags",
100+
"MobHealth", "NameTags", "NewChunks", "NewerNewChunks",
101+
"NoBackground", "NoFireOverlay", "NoVignette", "NoWeather",
102+
"NoShieldOverlay", "Freecam", "Waypoints", "HideWurst",
103+
"ElytraInfo", "Mapa", "BedrockStash"));
103104

104105
ALLOWED_HACKS.put(Category.CHAT,
105106
Set.of("AutoChat", "Mention", "NoPlayerChat"));

src/main/java/net/wurstclient/options/WurstOptionsScreen.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,9 @@ private void addToolsSection()
312312
"Open packet logging/deny/delay UI.",
313313
b -> wurst.getOtfs().packetToolsOtf.openScreen());
314314

315-
addButton(column, () -> "Hack Debugger",
316-
"Open Navigator with a quick search to toggle hacks/settings while out of game.",
317-
b -> minecraft.setScreen(new NavigatorMainScreen("hack")));
315+
addButton(column, () -> "Hack Debugger",
316+
"Open Navigator to toggle hacks/settings while out of game.",
317+
b -> minecraft.setScreen(new NavigatorMainScreen()));
318318

319319
addButton(column, () -> "Blocked Hacks Editor",
320320
"Open TooManyHax blocklist editor (safe outside game).",

0 commit comments

Comments
 (0)