Added /seen command

This commit is contained in:
2022-09-30 00:01:10 +02:00
parent 2d652bc780
commit 425eaf2b94
4 changed files with 44 additions and 31 deletions
+6
View File
@@ -210,4 +210,10 @@ public class Util {
return stringBuilder.substring(0, stringBuilder.length() - 2);
}
public static String capitalize(String str) {
if (str.length() <= 1)
return str.toUpperCase();
return str.toUpperCase().charAt(0) + str.toLowerCase().substring(1);
}
}