goofy ahh smh

This commit is contained in:
ThisIsALegitUsername 2023-01-09 03:14:00 +00:00
parent 5ef462ca5c
commit c302639cdf
10 changed files with 60905 additions and 60877 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -8,6 +8,7 @@ public class Scoreboard extends Mod {
public Scoreboard() {
super("Scoreboard", Category.MISC, true);
addSetting(numbers);
}
public BooleanSetting numbers = new BooleanSetting("Numbers","", false);

View File

@ -170,6 +170,10 @@ public class GuiIngame extends Gui {
if (this.showCrosshair()) {
GlStateManager.tryBlendFuncSeparate(GL_ONE_MINUS_DST_COLOR, GL_ONE_MINUS_SRC_COLOR, 1, 0);
GlStateManager.enableAlpha();
Minecraft mc = Minecraft.getMinecraft();
Entity target = mc.getRenderViewEntity();
if(target == null)
this.drawTexturedModalRect(i / 2 - 7, j / 2 - 7, 0, 0, 16, 16);
}