update role log embed
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m3s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m3s
This commit is contained in:
@ -6,6 +6,8 @@ import net.dv8tion.jda.api.Permission;
|
||||
import net.dv8tion.jda.api.entities.Member;
|
||||
import net.dv8tion.jda.api.entities.Role;
|
||||
|
||||
import java.awt.*;
|
||||
|
||||
/**
|
||||
* @author Fascinated (fascinated7)
|
||||
*/
|
||||
@ -36,4 +38,31 @@ public class RoleUtils {
|
||||
}
|
||||
return formattedPermissions.substring(0, formattedPermissions.length() - 2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the formatted color of a role
|
||||
*
|
||||
* @param color the color string to get the formatted color of
|
||||
* @return the formatted color
|
||||
*/
|
||||
public String getFormattedColor(Color color) {
|
||||
if (color == null) {
|
||||
return "Default";
|
||||
}
|
||||
String colorHex = HexColorUtils.colorToHex(color);
|
||||
return "`%s` *[(view)](%s)*".formatted(
|
||||
colorHex,
|
||||
"https://www.colorhexa.com/%s".formatted(colorHex.substring(1))
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the formatted color of a role
|
||||
*
|
||||
* @param role the role to get the formatted icon of
|
||||
* @return the formatted icon
|
||||
*/
|
||||
public String getFormattedColor(Role role) {
|
||||
return getFormattedColor(role.getColor());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user