This commit is contained in:
kawaiizenbo 2023-12-12 18:38:02 -07:00
parent b84aac97b2
commit 08031c32ba
9 changed files with 38 additions and 26 deletions

View file

@ -24,7 +24,7 @@ public class Moonlight implements ModInitializer
public static final Moonlight INSTANCE = new Moonlight();
public static final Logger LOGGER = LoggerFactory.getLogger("Moonlight");
public static final String clientTag = ColorUtils.aqua + "Moonlight Meadows";
public static final String versionTag = ColorUtils.magenta + "v0.1.0";
public static final String versionTag = ColorUtils.magenta + "v0.1.1";
public static Config CONFIG = new Config();
public static int uiColorA = 0xFF55FFFF;
public static int uiColor = 0x55FFFF;

View file

@ -19,7 +19,7 @@ public class Timer extends Module
public void onEnable()
{
super.onEnable();
mc.renderTickCounter = new RenderTickCounter((float)(20.0*speed.value), 0L);
mc.renderTickCounter = new RenderTickCounter((float)(20.0*speed.value), 0L, this::targetTickRate);
current = speed.value;
}
@ -33,6 +33,12 @@ public class Timer extends Module
public void onDisable()
{
super.onDisable();
mc.renderTickCounter = new RenderTickCounter(20.0f, 0L);
mc.renderTickCounter = new RenderTickCounter(20.0f, 0L, this::targetTickRate);
}
public float targetTickRate(float millis)
{
if(!enabled) return 50.0f;
return (float)(50.0/speed.value);
}
}