We love lambads
This commit is contained in:
parent
4c6c0ee684
commit
f4957201f6
60537
javascript/classes.js
60537
javascript/classes.js
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -47,7 +47,6 @@ public class ModManager {
|
||||||
public static NoRain noRain = new NoRain();
|
public static NoRain noRain = new NoRain();
|
||||||
public static DynamicFOV dynamicFOV = new DynamicFOV();
|
public static DynamicFOV dynamicFOV = new DynamicFOV();
|
||||||
public static PotionHUD potionHud;
|
public static PotionHUD potionHud;
|
||||||
//public static NoHurtCam noHurtCam = new NoHurtCam();
|
|
||||||
public static Info coordinate;
|
public static Info coordinate;
|
||||||
public static FPS fps;
|
public static FPS fps;
|
||||||
public static ReachDisplay reachDisplay;
|
public static ReachDisplay reachDisplay;
|
||||||
|
@ -56,7 +55,6 @@ public class ModManager {
|
||||||
public static ComboCounter comboCounter = new ComboCounter();
|
public static ComboCounter comboCounter = new ComboCounter();
|
||||||
public static Hitboxes hitboxes = new Hitboxes();
|
public static Hitboxes hitboxes = new Hitboxes();
|
||||||
public static AutoRespawn autoRespawn;
|
public static AutoRespawn autoRespawn;
|
||||||
//public static ChunkBorders chunkBorders;
|
|
||||||
public static NoParticles noParticles = new NoParticles();
|
public static NoParticles noParticles = new NoParticles();
|
||||||
public static Scoreboard scoreboard = new Scoreboard();
|
public static Scoreboard scoreboard = new Scoreboard();
|
||||||
public static ClearChat clearChat = new ClearChat();
|
public static ClearChat clearChat = new ClearChat();
|
||||||
|
@ -97,13 +95,10 @@ public class ModManager {
|
||||||
register(noRain);
|
register(noRain);
|
||||||
register(dynamicFOV);
|
register(dynamicFOV);
|
||||||
register(sprint = new Sprint());
|
register(sprint = new Sprint());
|
||||||
//register(noHurtCam);
|
|
||||||
register(autoGG = new AutoGG());
|
register(autoGG = new AutoGG());
|
||||||
register(hitboxes);
|
register(hitboxes);
|
||||||
//register(chunkBorders = new ChunkBorders());
|
|
||||||
register(noParticles);
|
register(noParticles);
|
||||||
register(scoreboard);
|
register(scoreboard);
|
||||||
//register(selfNametag = new SelfNametag());
|
|
||||||
register(clearChat);
|
register(clearChat);
|
||||||
register(animations);
|
register(animations);
|
||||||
}
|
}
|
||||||
|
|
|
@ -316,11 +316,7 @@ public class GuiIngame extends Gui {
|
||||||
this.overlayPlayerList.renderPlayerlist(i, scoreboard, scoreobjective1);
|
this.overlayPlayerList.renderPlayerlist(i, scoreboard, scoreobjective1);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (Mod m : Resent.INSTANCE.modManager.modules) {
|
Resent.INSTANCE.modManager.modules.stream().filter(m -> m.isEnabled()).filter(RenderMod.class::isInstance).forEach(m -> ((RenderMod)m).draw());
|
||||||
if (m.isEnabled() && m instanceof RenderMod && !(mc.currentScreen instanceof HUDConfigScreen)) {
|
|
||||||
((RenderMod) m).draw();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
|
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
|
||||||
GlStateManager.disableLighting();
|
GlStateManager.disableLighting();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user