Update to newest dev version - fixes #92

This commit is contained in:
SIMULATAN
2022-01-06 16:41:43 +01:00
committed by Cloudburst
parent b1fa434a9c
commit 502b2c2738
11 changed files with 89 additions and 57 deletions

View File

@@ -59,7 +59,7 @@ public class SkeletonESP extends Module {
mc.world.getEntities().forEach(entity -> {
if (!(entity instanceof PlayerEntity)) return;
if (mc.options.getPerspective() == Perspective.FIRST_PERSON && !freecam.isActive() && mc.player == entity) return;
int rotationHoldTicks = Config.get().rotationHoldTicks;
int rotationHoldTicks = Config.get().rotationHoldTicks.get();
Color skeletonColor = PlayerUtils.getPlayerColor((PlayerEntity)entity, skeletonColorSetting.get());
PlayerEntity playerEntity = (PlayerEntity) entity;