fix merge conflict for hopefully the last time

This commit is contained in:
Deauthorized
2024-05-06 15:51:04 -04:00
committed by GitHub
parent 50d969975c
commit c5b356e45a

View File

@ -135,9 +135,9 @@ public class BanCMD extends PlexCommand
{ {
return PlexUtils.getPlayerNameList(); return PlexUtils.getPlayerNameList();
} }
if (args.length != 1 && silentCheckPermission(sender, this.getPermission())) if (args.length > 1 && silentCheckPermission(sender, this.getPermission()))
{ {
return Collections.singletonList("-nrb"); return Collections.singletonList("-rb");
} }
return Collections.emptyList(); return Collections.emptyList();
} }