Changed GuiProgressBar color to Grey because people complained that Red raped their eyes

This commit is contained in:
CrushedPixel
2015-06-01 16:31:41 +02:00
parent a2da85e9f0
commit 3c0d3d5dab

View File

@@ -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 <code>progressString</code> to <code>null</code> 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);