fix 1.18.2 (fixes #109)

This commit is contained in:
C10udburst
2022-03-02 17:27:52 +01:00
parent e4006cfa3b
commit 6d3f5c0856
7 changed files with 4 additions and 64 deletions

View File

@@ -1,16 +0,0 @@
package anticope.rejects.gui.hud;
import anticope.rejects.utils.RejectsUtils;
import meteordevelopment.meteorclient.systems.hud.HUD;
import meteordevelopment.meteorclient.systems.hud.modules.DoubleTextHudElement;
public class CpsHud extends DoubleTextHudElement {
public CpsHud(HUD hud) {
super(hud, "cps", "Displays your CPS.", "CPS: ", false);
}
@Override
protected String getRight() {
return Integer.toString(RejectsUtils.CPS);
}
}