diff --git a/src/main/java/cc/fascinated/bat/features/logging/listeners/RoleListener.java b/src/main/java/cc/fascinated/bat/features/logging/listeners/RoleListener.java index 4fa6cc7..77bcb1c 100644 --- a/src/main/java/cc/fascinated/bat/features/logging/listeners/RoleListener.java +++ b/src/main/java/cc/fascinated/bat/features/logging/listeners/RoleListener.java @@ -78,7 +78,6 @@ public class RoleListener implements EventListener { .appendLine("Color: `%s`".formatted( role.getColor() == null ? "Default" : HexColorUtils.colorToHex(role.getColor()) ), true) - .appendLine("Position: `%s`".formatted(role.getPosition()), true) .build()) .build()); } @@ -92,7 +91,6 @@ public class RoleListener implements EventListener { .appendLine("Color: `%s`".formatted( event.getRole().getColor() == null ? "Default" : HexColorUtils.colorToHex(event.getRole().getColor()) ), true) - .appendLine("Position: `%s`".formatted(event.getRole().getPosition()), true) .build()) .build()); }