Minor positioning fix
This commit is contained in:
parent
9e14f8f4e5
commit
fbce5b24ef
124666
javascript/classes.js
124666
javascript/classes.js
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -15,7 +15,7 @@ public class ComboCounter extends RenderModule {
|
|||
public static BooleanSetting tshadow = new BooleanSetting("Text Shadow", "", true);
|
||||
|
||||
public ComboCounter() {
|
||||
super("ComboCounter", Category.HUD, 4, 14, true);
|
||||
super("ComboCounter", Category.HUD, 4, 24, true);
|
||||
addSetting(tshadow);
|
||||
}
|
||||
|
||||
|
@ -33,11 +33,11 @@ public class ComboCounter extends RenderModule {
|
|||
}
|
||||
|
||||
public int getWidth() {
|
||||
return mc.fontRendererObj.getStringWidth("[0 Combo]") + 4;
|
||||
return Minecraft.getMinecraft().fontRendererObj.getStringWidth("[0 Combo]") + 4;
|
||||
}
|
||||
|
||||
public int getHeight() {
|
||||
return mc.fontRendererObj.FONT_HEIGHT + 4;
|
||||
return Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT + 4;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -10,7 +10,7 @@ import net.minecraft.util.BlockPos;
|
|||
public class Info extends RenderModule{
|
||||
|
||||
public Info(){
|
||||
super("Info", Category.HUD, 70, 4);
|
||||
super("Info", Category.HUD, 150, 4);
|
||||
//addSetting(direction);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user