From f7c491b1b6c3fdaa14c8c97207c27abbd81654e3 Mon Sep 17 00:00:00 2001 From: Kiran Hart Date: Sun, 2 Jul 2023 18:39:59 -0400 Subject: [PATCH] 3.10.3 Took 7 minutes --- pom.xml | 4 +- .../tweetzy/skulls/commands/SetCommand.java | 59 +++++++++++++++++++ 2 files changed, 61 insertions(+), 2 deletions(-) create mode 100644 src/main/java/ca/tweetzy/skulls/commands/SetCommand.java diff --git a/pom.xml b/pom.xml index 8fc20e3..baa79af 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ skulls Skulls - 3.10.2 + 3.10.3 jar @@ -15,7 +15,7 @@ Skulls ${project.groupId}.${project.artifactId}.${project.name} 1.8 - 3.14.1 + 3.14.2 ca.tweetzy UTF-8 diff --git a/src/main/java/ca/tweetzy/skulls/commands/SetCommand.java b/src/main/java/ca/tweetzy/skulls/commands/SetCommand.java new file mode 100644 index 0000000..6d59a5d --- /dev/null +++ b/src/main/java/ca/tweetzy/skulls/commands/SetCommand.java @@ -0,0 +1,59 @@ +/* + * Skulls + * Copyright 2023 Kiran Hart + * + * 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 ca.tweetzy.skulls.commands; + +import ca.tweetzy.flight.command.AllowedExecutor; +import ca.tweetzy.flight.command.Command; +import ca.tweetzy.flight.command.ReturnType; +import org.bukkit.command.CommandSender; + +import java.util.List; + +public final class SetCommand extends Command { + + public SetCommand() { + super(AllowedExecutor.PLAYER, "set"); + } + + @Override + protected ReturnType execute(CommandSender sender, String... args) { + + return ReturnType.SUCCESS; + } + + @Override + protected List tab(CommandSender sender, String... args) { + return null; + } + + @Override + public String getPermissionNode() { + return null; + } + + @Override + public String getSyntax() { + return null; + } + + @Override + public String getDescription() { + return null; + } +}