From c650121a6cf7e8f465c91d4c2f361f85b8fd96ee Mon Sep 17 00:00:00 2001 From: Treer Date: Sun, 17 Jun 2018 01:08:04 +1000 Subject: [PATCH] =?UTF-8?q?Fix=20#8,=20Word=20=E2=80=9CMinecraft=E2=80=9D?= =?UTF-8?q?=20appears=20in=20profile=20selector?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/amidst/gui/profileselect/ProfileSelectWindow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/amidst/gui/profileselect/ProfileSelectWindow.java b/src/main/java/amidst/gui/profileselect/ProfileSelectWindow.java index 6a48b964..4990e334 100644 --- a/src/main/java/amidst/gui/profileselect/ProfileSelectWindow.java +++ b/src/main/java/amidst/gui/profileselect/ProfileSelectWindow.java @@ -88,7 +88,7 @@ public class ProfileSelectWindow { @CalledOnlyBy(AmidstThread.EDT) private JLabel createTitleLabel() { - JLabel result = new JLabel("Please select a Minecraft profile:", SwingConstants.CENTER); + JLabel result = new JLabel("Please select a game profile:", SwingConstants.CENTER); result.setFont(new Font("arial", Font.BOLD, 16)); return result; }