diff options
author | bowser0000 <bowser0000@gmail.com> | 2020-07-31 20:27:25 -0400 |
---|---|---|
committer | bowser0000 <bowser0000@gmail.com> | 2020-07-31 20:27:25 -0400 |
commit | 685fc067d3742e67b2e4bfb6f7949d62e4953eff (patch) | |
tree | 51dbd580104fc179fc6dd6e1bcf80b0ef8fe840d /me/Danker/commands/DHelpCommand.java | |
parent | 3a3cd409f16953d9b7392482d70f2e09f3cffb28 (diff) | |
download | SkyblockMod-685fc067d3742e67b2e4bfb6f7949d62e4953eff.tar.gz SkyblockMod-685fc067d3742e67b2e4bfb6f7949d62e4953eff.tar.bz2 SkyblockMod-685fc067d3742e67b2e4bfb6f7949d62e4953eff.zip |
Add fishing stats import, move second fishing display
Right half of the fishing display was covering numbers on the left half if it was in the hundreds/thousands
Diffstat (limited to 'me/Danker/commands/DHelpCommand.java')
-rw-r--r-- | me/Danker/commands/DHelpCommand.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/me/Danker/commands/DHelpCommand.java b/me/Danker/commands/DHelpCommand.java index c88d295..3d6d7ad 100644 --- a/me/Danker/commands/DHelpCommand.java +++ b/me/Danker/commands/DHelpCommand.java @@ -43,7 +43,8 @@ public class DHelpCommand extends CommandBase { EnumChatFormatting.GOLD + " /guildof [player]" + EnumChatFormatting.AQUA + " - Uses API to get guild name and guild master of a person. If no name is provided, it checks yours.\n" + EnumChatFormatting.GOLD + " /petsof [player]" + EnumChatFormatting.AQUA + " - Uses API to get pets of a person. If no name is provided, it checks yours.\n" + EnumChatFormatting.GOLD + " /bank [player]" + EnumChatFormatting.AQUA + " - Uses API to get bank and purse coins of a person. If no name is provided, it checks yours.\n" + - EnumChatFormatting.GOLD + " /armor [player]" + EnumChatFormatting.AQUA + " - Uses API to get armour of a person. If no name is provided, it checks yours.\n")); + EnumChatFormatting.GOLD + " /armor [player]" + EnumChatFormatting.AQUA + " - Uses API to get armour of a person. If no name is provided, it checks yours.\n" + + EnumChatFormatting.GOLD + " /importfishing" + EnumChatFormatting.AQUA + " - Imports your fishing stats from your latest profile to your fishing tracker using the API.\n")); } } |