diff --git a/src/main/java/eu/crushedpixel/replaymod/gui/elements/GuiProgressBar.java b/src/main/java/eu/crushedpixel/replaymod/gui/elements/GuiProgressBar.java index f53f8d8f..bc75873b 100644 --- a/src/main/java/eu/crushedpixel/replaymod/gui/elements/GuiProgressBar.java +++ b/src/main/java/eu/crushedpixel/replaymod/gui/elements/GuiProgressBar.java @@ -55,7 +55,7 @@ public class GuiProgressBar extends Gui { * Replaces the default progress String that is being displayed (x%) with a custom String. * This has to be called whenever the progress itself changes. * Setting progressString to null uses the default progress String. - * @param progressString + * @param progressString The String to display */ public void setProgressString(String progressString) { this.progressString = progressString; @@ -80,7 +80,7 @@ public class GuiProgressBar extends Gui { // Draws red progress drawRect(xPosition + BORDER_WIDTH, yPosition + BORDER_WIDTH, - xPosition + BORDER_WIDTH + progressWidth, yPosition + height - BORDER_WIDTH, Color.RED.getRGB()); + xPosition + BORDER_WIDTH + progressWidth, yPosition + height - BORDER_WIDTH, Color.GRAY.getRGB()); int xMiddle = xPosition + (width/2);