Skip to content
Snippets Groups Projects
Commit dfc956a1 authored by Benjamin Elsdon's avatar Benjamin Elsdon
Browse files

Modified the new commands to be compliant with my changes

parent 6e14dda8
No related merge requests found
...@@ -180,7 +180,8 @@ public final class PlayerCommands { ...@@ -180,7 +180,8 @@ public final class PlayerCommands {
} }
} }
@Command(label = "givechar", aliases = { "givec" }, usage = "Usage: givechar <playerId> <avatarId> [level]") @Command(label = "givechar", aliases = { "givec" }, usage = "givechar <playerId> <avatarId> [level]",
description = "Gives the player a specified character", permission = "player.givechar")
public static class GiveCharCommand implements CommandHandler { public static class GiveCharCommand implements CommandHandler {
@Override public void execute(GenshinPlayer player, List<String> args) { @Override public void execute(GenshinPlayer player, List<String> args) {
int target, avatarID, level = 1, ascension = 1; int target, avatarID, level = 1, ascension = 1;
...@@ -435,8 +436,9 @@ public final class PlayerCommands { ...@@ -435,8 +436,9 @@ public final class PlayerCommands {
} }
} }
@Command(label = "setworldlevel", aliases = {"setworldlvl"}, @Command(label = "setworldlevel", aliases = {"setworldlvl"}, usage = "setworldlevel <level>",
usage = "Usage: setworldlevel <level>", execution = Command.Execution.PLAYER) description = "Sets your world level (Relog to see proper effects)", permission = "player.setworldlevel",
execution = Command.Execution.PLAYER)
public static class SetWorldLevelCommand implements CommandHandler { public static class SetWorldLevelCommand implements CommandHandler {
@Override @Override
public void execute(GenshinPlayer player, List<String> args) { public void execute(GenshinPlayer player, List<String> args) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment