DungeonsXL/core/src/main/java/de/erethon/dungeonsxl/command/ResourcePackCommand.java

61 lines
1.9 KiB
Java
Raw Normal View History

/*
2022-01-08 23:02:57 +01:00
* Copyright (C) 2012-2022 Frank Baumann
*
* 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 <http://www.gnu.org/licenses/>.
*/
2018-05-03 21:54:25 +02:00
package de.erethon.dungeonsxl.command;
2018-05-03 21:54:25 +02:00
import de.erethon.dungeonsxl.DungeonsXL;
import de.erethon.dungeonsxl.config.DMessage;
import de.erethon.dungeonsxl.player.DPermission;
2022-04-03 18:09:12 +02:00
import de.erethon.bedrock.chat.MessageUtil;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
/**
* @author Daniel Saukel
*/
2018-08-18 16:52:51 +02:00
public class ResourcePackCommand extends DCommand {
2018-08-18 16:52:51 +02:00
public ResourcePackCommand(DungeonsXL plugin) {
super(plugin);
setCommand("resourcepack");
setMinArgs(1);
setMaxArgs(1);
setHelp(DMessage.CMD_RESOURCE_PACK_HELP.getMessage());
2017-11-16 18:25:10 +01:00
setPermission(DPermission.RESOURCE_PACK.getNode());
setPlayerCommand(true);
}
@Override
public void onExecute(String[] args, CommandSender sender) {
Player player = (Player) sender;
2016-09-13 18:39:22 +02:00
if (args[1].equalsIgnoreCase("reset")) {
// Placeholder to reset to default
2017-07-21 18:33:21 +02:00
player.setResourcePack("http://google.com");
2016-09-13 18:39:22 +02:00
return;
}
2018-08-18 16:52:51 +02:00
String url = (String) config.getResourcePacks().get(args[1]);
if (url == null) {
2017-07-21 18:33:21 +02:00
MessageUtil.sendMessage(sender, DMessage.ERROR_NO_SUCH_RESOURCE_PACK.getMessage(args[1]));
return;
}
2017-07-21 18:33:21 +02:00
player.setResourcePack(url);
}
}