mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
Fixed invalid condition
This commit is contained in:
parent
ca5d3a818b
commit
281f60a4ef
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ public class Remove extends SubCommand {
|
|||
}
|
||||
default:
|
||||
Set<UUID> uuids = MainUtil.getUUIDsFromString(args[0]);
|
||||
if (uuids.isEmpty()) {
|
||||
if (!uuids.isEmpty()) {
|
||||
for (UUID uuid : uuids) {
|
||||
if (plot.getTrusted().contains(uuid)) {
|
||||
if (plot.removeTrusted(uuid)) {
|
||||
|
|
Loading…
Reference in a new issue