who even cares about this
Some checks failed
Deploy to Dokku / docker (ubuntu-latest) (push) Failing after 5s

This commit is contained in:
Lee 2024-07-04 18:00:44 +01:00
parent 6efb042f14
commit 313f43172d

@ -78,7 +78,6 @@ public class RoleListener implements EventListener {
.appendLine("Color: `%s`".formatted( .appendLine("Color: `%s`".formatted(
role.getColor() == null ? "Default" : HexColorUtils.colorToHex(role.getColor()) role.getColor() == null ? "Default" : HexColorUtils.colorToHex(role.getColor())
), true) ), true)
.appendLine("Position: `%s`".formatted(role.getPosition()), true)
.build()) .build())
.build()); .build());
} }
@ -92,7 +91,6 @@ public class RoleListener implements EventListener {
.appendLine("Color: `%s`".formatted( .appendLine("Color: `%s`".formatted(
event.getRole().getColor() == null ? "Default" : HexColorUtils.colorToHex(event.getRole().getColor()) event.getRole().getColor() == null ? "Default" : HexColorUtils.colorToHex(event.getRole().getColor())
), true) ), true)
.appendLine("Position: `%s`".formatted(event.getRole().getPosition()), true)
.build()) .build())
.build()); .build());
} }