The string replacement for achievement collection is not needed.

This commit is contained in:
kevlahnota
2017-09-14 00:42:39 +00:00
parent 8be583083e
commit 021a48c070

View File

@@ -126,8 +126,6 @@ public abstract class AchievementCollection implements Iterable<Achievement> {
for (final String s : achievementListFile) { for (final String s : achievementListFile) {
if (!s.isEmpty()) { if (!s.isEmpty()) {
String k[] = StringUtils.split(s, "|"); String k[] = StringUtils.split(s, "|");
if(k[0].contains("add(\""))
k[0] = k[0].replace("add(\"","");
add(k[0],k[1],k[2]); add(k[0],k[1],k[2]);
} }
} }