This repository was archived by the owner on Mar 5, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
java/me/earth/earthhack/impl Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ apply plugin: 'maven'
4242
4343mainClassName = ' me.earth.earthhack.installer.main.Main'
4444group 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
4747boolean VANILLA = false
4848// noinspection GroovyUnusedAssignment
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 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" : " " ,
You can’t perform that action at this time.
0 commit comments