Skip to content

Commit

Permalink
3.10.3
Browse files Browse the repository at this point in the history
Took 7 minutes
  • Loading branch information
kiranhart committed Jul 2, 2023
1 parent 17ba4d0 commit f7c491b
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -7,15 +7,15 @@
<artifactId>skulls</artifactId>

<name>Skulls</name>
<version>3.10.2</version>
<version>3.10.3</version>
<packaging>jar</packaging>

<properties>
<author>Kiran Hart</author>
<jarName>Skulls</jarName>
<main.class>${project.groupId}.${project.artifactId}.${project.name}</main.class>
<java.version>1.8</java.version>
<flight.version>3.14.1</flight.version>
<flight.version>3.14.2</flight.version>
<flight.path>ca.tweetzy</flight.path>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
59 changes: 59 additions & 0 deletions 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 <https://www.gnu.org/licenses/>.
*/

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<String> 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;
}
}

0 comments on commit f7c491b

Please sign in to comment.