mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-19 13:38:44 +01:00
Added spacing to BanListCommand output.
By: EvilSeph <evilseph@gmail.com>
This commit is contained in:
parent
7e5c1baee9
commit
f2ec9604cb
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ public class BanListCommand extends VanillaCommand {
|
||||||
public boolean execute(CommandSender sender, String currentAlias, String[] args) {
|
public boolean execute(CommandSender sender, String currentAlias, String[] args) {
|
||||||
if (!testPermission(sender)) return true;
|
if (!testPermission(sender)) return true;
|
||||||
|
|
||||||
StringBuilder message = new StringBuilder().append(ChatColor.GRAY).append("Ban list:");
|
StringBuilder message = new StringBuilder().append(ChatColor.GRAY).append("Ban list: ");
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
for (OfflinePlayer p : Bukkit.getServer().getBannedPlayers()) {
|
for (OfflinePlayer p : Bukkit.getServer().getBannedPlayers()) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue