dev.espi.protectionstones.commands.ArgReload Maven / Gradle / Ivy
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package dev.espi.protectionstones.commands;
import dev.espi.protectionstones.PSL;
import dev.espi.protectionstones.ProtectionStones;
import org.bukkit.command.CommandSender;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
public class ArgReload implements PSCommandArg {
// /ps reload
@Override
public List getNames() {
return Collections.singletonList("reload");
}
@Override
public boolean allowNonPlayersToExecute() {
return true;
}
@Override
public List getPermissionsToExecute() {
return Arrays.asList("protectionstones.admin");
}
@Override
public HashMap getRegisteredFlags() {
return null;
}
@Override
public boolean executeArgument(CommandSender p, String[] args, HashMap flags) {
if (!p.hasPermission("protectionstones.admin")) {
PSL.msg(p, PSL.NO_PERMISSION_ADMIN.msg());
return true;
}
PSL.msg(p, PSL.RELOAD_START.msg());
ProtectionStones.loadConfig(true);
PSL.msg(p, PSL.RELOAD_COMPLETE.msg());
return true;
}
@Override
public List tabComplete(CommandSender sender, String alias, String[] args) {
return null;
}
}