Redesigned TimeComponent

This commit is contained in:
noil 2021-04-19 14:36:29 -04:00
parent 7f505a7794
commit 733262ff5f
2 changed files with 5 additions and 2 deletions

View File

@ -37,7 +37,7 @@ public class DraggableHudComponent extends HudComponent {
this.setVisible(false);
this.setSnappable(true);
this.setLocked(false);
this.setRclicked(true);
this.setRclicked(false);
this.setX(Minecraft.getMinecraft().displayWidth / 2.0f);
this.setY(Minecraft.getMinecraft().displayHeight / 2.0f);
}

View File

@ -1,5 +1,6 @@
package me.rigamortis.seppuku.impl.gui.hud.component;
import com.mojang.realmsclient.gui.ChatFormatting;
import me.rigamortis.seppuku.api.gui.hud.component.DraggableHudComponent;
import java.text.SimpleDateFormat;
@ -19,7 +20,9 @@ public final class TimeComponent extends DraggableHudComponent {
public void render(int mouseX, int mouseY, float partialTicks) {
super.render(mouseX, mouseY, partialTicks);
final String time = new SimpleDateFormat("h:mm a").format(new Date());
final String hourMinute = new SimpleDateFormat("h:mm").format(new Date());
final String amPm = new SimpleDateFormat("a").format(new Date());
final String time = ChatFormatting.RESET + hourMinute + " " + ChatFormatting.GRAY + amPm;
this.setW(mc.fontRenderer.getStringWidth(time));
mc.fontRenderer.drawStringWithShadow(time, this.getX(), this.getY(), -1);