diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/messages/Messages.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/messages/Messages.java index fce677800..cd3bdcc01 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/messages/Messages.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/messages/Messages.java @@ -166,10 +166,7 @@ public class Messages { //Words which should not be capitalized in title case, mostly prepositions which appear ingame //This list is not comprehensive! private static final HashSet noCaps = new HashSet<>( - Arrays.asList(new String[]{ - //English - "a", "an", "and", "of", "by", "to", "the", "x" - }) + Arrays.asList("a", "an", "and", "of", "by", "to", "the", "x", "for") ); public static String titleCase( String str ){