Skip to content

Commit 6c89b41

Browse files
committed
Added PearlESP, Fixed Waypoint Deaths
1 parent bf30dba commit 6c89b41

File tree

5 files changed

+521
-1
lines changed

5 files changed

+521
-1
lines changed

src/main/java/net/wurstclient/hack/HackList.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ public final class HackList implements UpdateListener
228228
public final BreadcrumbsHack breadcrumbsHack = new BreadcrumbsHack();
229229
public final LogoutSpotsHack logoutSpotsHack = new LogoutSpotsHack();
230230
public final TridentEspHack tridentEspHack = new TridentEspHack();
231+
public final PearlEspHack pearlEspHack = new PearlEspHack();
231232
public final ChestSearchHack chestSearchHack = new ChestSearchHack();
232233
public final net.wurstclient.hacks.LootSearchHack lootSearchHack =
233234
new net.wurstclient.hacks.LootSearchHack();
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
* Copyright (c) 2014-2025 Wurst-Imperium and contributors.
3+
*
4+
* This source code is subject to the terms of the GNU General Public
5+
* License, version 3. If a copy of the GPL was not distributed with this
6+
* file, You can obtain one at: https://www.gnu.org/licenses/gpl-3.0.txt
7+
*/
8+
package net.wurstclient.hacks;
9+
10+
/**
11+
* Legacy wrapper kept for compatibility. Use PearlEspHack instead.
12+
*/
13+
@Deprecated
14+
public final class PearlDetectHack extends PearlEspHack
15+
{
16+
public PearlDetectHack()
17+
{
18+
super();
19+
}
20+
}

0 commit comments

Comments
 (0)