aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbowser0000 <bowser0000@gmail.com>2021-04-20 00:06:48 -0400
committerbowser0000 <bowser0000@gmail.com>2021-04-20 00:06:48 -0400
commit4e4bc07819f595107ad23d2bb003f518d1344ec5 (patch)
treea19faa0180bca3377503740e9eefaaed5c8d5950
parentbe0594f3ce39b560d5d30fd9e463bd42304c440e (diff)
downloadSkyblockMod-4e4bc07819f595107ad23d2bb003f518d1344ec5.tar.gz
SkyblockMod-4e4bc07819f595107ad23d2bb003f518d1344ec5.tar.bz2
SkyblockMod-4e4bc07819f595107ad23d2bb003f518d1344ec5.zip
Change /skills to /skill
-rw-r--r--README.md2
-rw-r--r--src/main/java/me/Danker/commands/SkillsCommand.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index db18e13..5afaf0c 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@ Discord Server: https://discord.gg/QsEkNQS
- /move <coords/display/dungeontimer/skill50/lividhp/caketimer/skilltracker/wateranswer/bonzotimer/golemtimer/teammatesinradius> <x> <y> - Moves text display to specified X and Y coordinates.
- /scale <coords/display/dungeontimer/skill50/lividhp/caketimer/skilltracker/wateranswer/bonzotimer/golemtimer/teammatesinradius> <scale (0.1 - 10)> - Scales text display to a specified multipler between 0.1x and 10x.
- /slayer [player] - Uses API to get slayer xp of a person. If no name is provided, it checks yours.
-- /skills [player] - Uses API to get skill levels of a person. If no name is provided, it checks yours.
+- /skill [player] - Uses API to get skill levels of a person. If no name is provided, it checks yours.
- /lobbyskills - Uses API to find the average skills of the lobby, as well the three players with the highest skill average.
- /guildof [player] - Uses API to get guild name and guild master of a person. If no name is provided, it checks yours.
- /petsof [player] - Uses API to get pets of a person. If no name is provided, it checks yours.
diff --git a/src/main/java/me/Danker/commands/SkillsCommand.java b/src/main/java/me/Danker/commands/SkillsCommand.java
index a17fedb..6195e81 100644
--- a/src/main/java/me/Danker/commands/SkillsCommand.java
+++ b/src/main/java/me/Danker/commands/SkillsCommand.java
@@ -19,7 +19,7 @@ public class SkillsCommand extends CommandBase {
@Override
public String getCommandName() {
- return "skills";
+ return "skill";
}
@Override