/* * Copyright (C) 2013 Moribus * Copyright (C) 2015 ProkopyL * * 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 fr.moribus.imageonmap.commands.maptool; import fr.moribus.imageonmap.Permissions; import fr.moribus.imageonmap.commands.IoMCommand; import fr.moribus.imageonmap.map.ImageMap; import fr.zcraft.zlib.components.commands.CommandException; import fr.zcraft.zlib.components.commands.CommandInfo; import fr.zcraft.zlib.components.i18n.I; import org.bukkit.command.CommandSender; import java.util.List; @CommandInfo(name = "rename",usageParameters = " ") public class RenameCommand extends IoMCommand { @Override protected void run() throws CommandException { if(args.length != 4) { warning(I.t("Not enough or too many arguments! Usage: /maptool rename ")); return; } //if(args.length == 2) //{ ImageMap map = getMapFromArgs(); map.rename(args[2]); // } else { // info(I.t("Not enough or too many arguments")); // } } @Override protected List complete() throws CommandException { if(args.length == 1) return getMatchingMapNames(playerSender(), args[0]); return null; } @Override public boolean canExecute(CommandSender sender) { return Permissions.RENAME.grantedTo(sender); } }