1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2024-11-27 12:46:22 +01:00

Made instance name detection case in-sensitive.

This commit is contained in:
sk89q 2014-01-08 15:21:47 -08:00
parent 1c3b0a2722
commit 3b1bc3f851

View File

@ -110,7 +110,7 @@ public class InstanceList {
boolean foundLocal = false;
for (Instance instance : local) {
if (instance.getName().equals(manifest.getName())) {
if (instance.getName().equalsIgnoreCase(manifest.getName())) {
foundLocal = true;
instance.setTitle(manifest.getTitle());