1
0
mirror of https://e.coding.net/circlecloud/Residence.git synced 2025-11-26 22:06:07 +00:00

complete all command...

Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
502647092
2015-09-24 18:11:57 +08:00
parent 1cffbc7687
commit d62a7a1e57
37 changed files with 2156 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package com.bekvon.bukkit.residence.commandsub;
import org.bukkit.command.Command;
import org.bukkit.command.CommandException;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import com.bekvon.bukkit.residence.Residence;
import com.bekvon.bukkit.residence.protection.ResidenceManager;
import cn.citycraft.PluginHelper.commands.BaseCommand;
public class CommandGive extends BaseCommand {
Residence plugin;
public CommandGive(final Residence plugin) {
super("give");
this.plugin = plugin;
setOnlyPlayerExecutable(true);
setMinimumArguments(2);
setPossibleArguments("<目标玩家> <赠送的领地>");
}
@Override
public void execute(final CommandSender sender, final Command command, final String label, final String[] args) throws CommandException {
final Player player = (Player) sender;
final boolean resadmin = (command != null);
final ResidenceManager rmanager = plugin.getResidenceManager();
rmanager.giveResidence(player, args[1], args[0], resadmin);
}
}