goofy ahh smh
This commit is contained in:
parent
5ef462ca5c
commit
c302639cdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
121775
javascript/classes.js
121775
javascript/classes.js
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -8,6 +8,7 @@ public class Scoreboard extends Mod {
|
||||||
public Scoreboard() {
|
public Scoreboard() {
|
||||||
super("Scoreboard", Category.MISC, true);
|
super("Scoreboard", Category.MISC, true);
|
||||||
addSetting(numbers);
|
addSetting(numbers);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public BooleanSetting numbers = new BooleanSetting("Numbers","", false);
|
public BooleanSetting numbers = new BooleanSetting("Numbers","", false);
|
||||||
|
|
|
@ -170,6 +170,10 @@ public class GuiIngame extends Gui {
|
||||||
if (this.showCrosshair()) {
|
if (this.showCrosshair()) {
|
||||||
GlStateManager.tryBlendFuncSeparate(GL_ONE_MINUS_DST_COLOR, GL_ONE_MINUS_SRC_COLOR, 1, 0);
|
GlStateManager.tryBlendFuncSeparate(GL_ONE_MINUS_DST_COLOR, GL_ONE_MINUS_SRC_COLOR, 1, 0);
|
||||||
GlStateManager.enableAlpha();
|
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);
|
this.drawTexturedModalRect(i / 2 - 7, j / 2 - 7, 0, 0, 16, 16);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user