Minor positioning fix

This commit is contained in:
ThisIsALegitUsername 2023-01-13 23:42:53 +00:00
parent 9e14f8f4e5
commit fbce5b24ef
4 changed files with 62349 additions and 62327 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -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

View File

@ -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);
}