Skip to content
This repository was archived by the owner on Mar 5, 2023. It is now read-only.

Commit 261d106

Browse files
authored
Merge pull request #289 from 3arthqu4ke/v.1.8.5
V.1.8.5
2 parents 9267752 + f3d3f2e commit 261d106

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ apply plugin: 'maven'
4242

4343
mainClassName = 'me.earth.earthhack.installer.main.Main'
4444
group project.modGroup //http://maven.apache.org/guides/mini/guide-naming-conventions.html
45-
project.version = '1.8.4'
45+
project.version = '1.8.5'
4646

4747
boolean VANILLA = false
4848
//noinspection GroovyUnusedAssignment

src/main/java/me/earth/earthhack/impl/Earthhack.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class Earthhack implements Globals
1515
{
1616
private static final Logger LOGGER = LogManager.getLogger("3arthh4ck");
1717
public static final String NAME = "3arthh4ck";
18-
public static final String VERSION = "1.8.4";
18+
public static final String VERSION = "1.8.5";
1919

2020
public static void preInit()
2121
{

src/main/java/me/earth/earthhack/impl/modules/movement/anchor/Anchor.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ public Anchor()
7777
// TODO: tracer?
7878
this.listeners.add(new LambdaListener<>(MoveEvent.class, event ->
7979
{
80-
if (!Managers.NCP.passed(lagTime.getValue()) || !sneaking.getValue() && mc.player.isSneaking())
80+
if (mc.player.isSpectator()
81+
|| !Managers.NCP.passed(lagTime.getValue())
82+
|| !sneaking.getValue() && mc.player.isSneaking())
8183
{
8284
return;
8385
}

src/main/resources/mcmod.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"modid": "earthhack",
44
"name": "3arthh4ck",
55
"description": "A 1.12.2 Anarchy Client.",
6-
"version": "1.8.4",
6+
"version": "1.8.5",
77
"mcversion": "1.12.2",
88
"url": "",
99
"updateUrl": "",

0 commit comments

Comments
 (0)