removed inconsistent spacing in acinform

This commit is contained in:
Elias Müller 2024-11-28 21:22:28 +01:00
parent b35c5b9240
commit c9935637b9

View File

@ -89,14 +89,14 @@ public class AcInform extends Appliance {
.append(Component.text("[", NamedTextColor.GRAY))
.append(Component.text("Report", NamedTextColor.GOLD))
.append(Component.text("] ", NamedTextColor.GRAY))
.append(Component.text("]", NamedTextColor.GRAY))
.clickEvent(ClickEvent.suggestCommand(String.format("/report %s anticheat %s flagged %s", playerName, anticheatName, checkName)))
);
component.append(
Component.text(" [", NamedTextColor.GRAY)
.append(Component.text("Kick", NamedTextColor.GOLD))
.append(Component.text("] ", NamedTextColor.GRAY))
.append(Component.text("]", NamedTextColor.GRAY))
.clickEvent(ClickEvent.suggestCommand(String.format("/kick %s", playerName)))
);