[VOW] Implemented Undead Butler

This commit is contained in:
Evan Kranzler 2021-11-08 20:30:30 -05:00
parent 5dbc8f11f3
commit 1656324329
5 changed files with 71 additions and 6 deletions

View file

@ -915,6 +915,14 @@ public final class CardUtil {
}
}
public static String getTextWithFirstCharLowerCase(String text) {
if (text != null && text.length() >= 1) {
return Character.toLowerCase(text.charAt(0)) + text.substring(1);
} else {
return text;
}
}
private static final String vowels = "aeiouAEIOU";
public static String addArticle(String text) {