bot: add color change command
This commit is contained in:
@@ -21,6 +21,12 @@ namespace PluralKit
|
||||
if (str.Length < maxLength) return str;
|
||||
return str.Substring(0, maxLength - ellipsis.Length) + ellipsis;
|
||||
}
|
||||
|
||||
public static bool IsLongerThan(this string str, int length)
|
||||
{
|
||||
if (str != null) return str.Length > length;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static class Emojis {
|
||||
|
Reference in New Issue
Block a user