From 80cf5cef2787a4a48063dcd288a84fdd975fab52 Mon Sep 17 00:00:00 2001 From: libraryaddict Date: Fri, 10 Apr 2020 17:25:01 +1200 Subject: [PATCH] Add information about :slim --- .../disguise/commands/utils/GrabSkinCommand.java | 1 + .../disguise/commands/utils/SaveDisguiseCommand.java | 1 + .../disguise/utilities/translations/LibsMsg.java | 9 +++++++-- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/main/java/me/libraryaddict/disguise/commands/utils/GrabSkinCommand.java b/src/main/java/me/libraryaddict/disguise/commands/utils/GrabSkinCommand.java index 6ae48eb3..9cff85f0 100644 --- a/src/main/java/me/libraryaddict/disguise/commands/utils/GrabSkinCommand.java +++ b/src/main/java/me/libraryaddict/disguise/commands/utils/GrabSkinCommand.java @@ -157,5 +157,6 @@ public class GrabSkinCommand implements CommandExecutor { sender.sendMessage(LibsMsg.GRAB_DISG_HELP_3.get()); sender.sendMessage(LibsMsg.GRAB_DISG_HELP_4.get()); sender.sendMessage(LibsMsg.GRAB_DISG_HELP_5.get()); + sender.sendMessage(LibsMsg.GRAB_DISG_HELP_6.get()); } } diff --git a/src/main/java/me/libraryaddict/disguise/commands/utils/SaveDisguiseCommand.java b/src/main/java/me/libraryaddict/disguise/commands/utils/SaveDisguiseCommand.java index f3791477..e16c342a 100644 --- a/src/main/java/me/libraryaddict/disguise/commands/utils/SaveDisguiseCommand.java +++ b/src/main/java/me/libraryaddict/disguise/commands/utils/SaveDisguiseCommand.java @@ -182,5 +182,6 @@ public class SaveDisguiseCommand implements CommandExecutor { sender.sendMessage(LibsMsg.SAVE_DISG_HELP_3.get()); sender.sendMessage(LibsMsg.SAVE_DISG_HELP_4.get()); sender.sendMessage(LibsMsg.SAVE_DISG_HELP_5.get()); + sender.sendMessage(LibsMsg.SAVE_DISG_HELP_6.get()); } } diff --git a/src/main/java/me/libraryaddict/disguise/utilities/translations/LibsMsg.java b/src/main/java/me/libraryaddict/disguise/utilities/translations/LibsMsg.java index a083155a..7039cce9 100644 --- a/src/main/java/me/libraryaddict/disguise/utilities/translations/LibsMsg.java +++ b/src/main/java/me/libraryaddict/disguise/utilities/translations/LibsMsg.java @@ -63,7 +63,8 @@ public enum LibsMsg { DMODIFY_MODIFIED(ChatColor.RED + "Your disguise has been modified!"), DMODIFY_NO_PERM(ChatColor.RED + "No permission to modify your disguise!"), DMODIFYENT_CLICK(ChatColor.RED + "Right click a disguised entity in the next %s seconds to modify their disguise!"), - DISGUISECOPY_INTERACT(ChatColor.RED + "Right click a disguised entity in the next %s seconds to copy their disguise!"), + DISGUISECOPY_INTERACT( + ChatColor.RED + "Right click a disguised entity in the next %s seconds to copy their disguise!"), DMODPLAYER_HELP1(ChatColor.DARK_GREEN + "Modify the disguise of another player!"), DMODPLAYER_MODIFIED(ChatColor.RED + "Modified the disguise of %s!"), DMODPLAYER_NODISGUISE(ChatColor.RED + "The player '%s' is not disguised"), @@ -224,13 +225,17 @@ public enum LibsMsg { "Your arguments need to be as if you're using /disguise. So '/disguise player Notch setsneaking' - " + "Means '/savedisguise Notch player Notch setsneaking'"), SAVE_DISG_HELP_5(ChatColor.GREEN + "Remember! You can upload your own skins, then reference those skins!"), + SAVE_DISG_HELP_6(ChatColor.GREEN + + "If you are using setSkin, you can append :slim to your skin path to get the slim Alex model. So myskin" + + ".png:slim"), GRAB_DISG_HELP_1(ChatColor.GREEN + "You can choose a name to save the skins under, the names will be usable as if it was an actual player " + "skin"), GRAB_DISG_HELP_2(ChatColor.DARK_GREEN + "/grabskin https://somesite.com/myskin.png "), GRAB_DISG_HELP_3(ChatColor.DARK_GREEN + "/grabskin myskin.png - Skins must be in the folder!"), GRAB_DISG_HELP_4(ChatColor.DARK_GREEN + "/grabskin "), - GRAB_DISG_HELP_5( + GRAB_DISG_HELP_5(ChatColor.GREEN + "If you want the slim Alex version of the skin, append :slim. So 'myskin.png:slim'"), + GRAB_DISG_HELP_6( ChatColor.GREEN + "You will be sent the skin data, but you can also use the saved names in disguises"), CUSTOM_DISGUISE_NAME_CONFLICT( ChatColor.RED + "Cannot create the custom disguise '%s' as there is a name conflict!"),