From da0e2822588efa2acb57979f76f089d4b95b841e Mon Sep 17 00:00:00 2001 From: libraryaddict Date: Sat, 14 Dec 2019 11:49:01 +1300 Subject: [PATCH] Added test for releases --- .../disguise/utilities/plugin/PluginInformation.java | 2 +- .../disguise/utilities/translations/LibsMsg.java | 7 ++++--- src/main/resources/config.yml | 1 + 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main/java/me/libraryaddict/disguise/utilities/plugin/PluginInformation.java b/src/main/java/me/libraryaddict/disguise/utilities/plugin/PluginInformation.java index cfa1b39e..b9725d79 100644 --- a/src/main/java/me/libraryaddict/disguise/utilities/plugin/PluginInformation.java +++ b/src/main/java/me/libraryaddict/disguise/utilities/plugin/PluginInformation.java @@ -67,6 +67,6 @@ public class PluginInformation { } public boolean isLegit() { - return getUserID().matches("[0-9]+") && getResourceID().equals("32453") && getDownloadID().matches("-?[0-9]+"); + return getUserID().matches("[0-9]+") && !getUserID().equals("12345") && getResourceID().equals("32453") && getDownloadID().matches("-?[0-9]+"); } } 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 411c5914..f618da99 100644 --- a/src/main/java/me/libraryaddict/disguise/utilities/translations/LibsMsg.java +++ b/src/main/java/me/libraryaddict/disguise/utilities/translations/LibsMsg.java @@ -130,6 +130,7 @@ public enum LibsMsg { NO_PERM_DISGUISE(ChatColor.RED + "You do not have permission for that disguise!"), NO_PERMS_USE_OPTIONS(ChatColor.RED + "Ignored %s options you do not have permission to use. Add 'show' to view unusable options."), + OWNED_BY(ChatColor.GOLD + "Plugin registered to '%%__USER__%%'!"), NOT_DISGUISED(ChatColor.RED + "You are not disguised!"), NOT_NUMBER(ChatColor.RED + "Error! %s is not a number"), PARSE_CANT_DISG_UNKNOWN(ChatColor.RED + "Error! You cannot disguise as " + ChatColor.GREEN + "Unknown!"), @@ -157,8 +158,7 @@ public enum LibsMsg { PARSE_SUPPLY_PLAYER(ChatColor.RED + "Error! You need to give a player name!"), PARSE_TOO_MANY_ARGS(ChatColor.RED + "Error! %s doesn't know what to do with %s!"), PARSE_INVALID_TIME(ChatColor.RED + "Error! %s is not a valid time! Use s,m,h,d or secs,mins,hours,days"), - PARSE_INVALID_TIME_SEQUENCE( - ChatColor.RED + "Error! %s is not a valid time! Do amount then time, eg. 4min10sec"), + PARSE_INVALID_TIME_SEQUENCE(ChatColor.RED + "Error! %s is not a valid time! Do amount then time, eg. 4min10sec"), PARSE_USE_SECOND_NUM(ChatColor.RED + "Error! Only the disguises %s and %s uses a second number!"), REF_TOO_MANY(ChatColor.RED + "Failed to store the reference, too many cloned disguises. Please raise the maximum cloned disguises, or " + @@ -205,4 +205,5 @@ public enum LibsMsg { public String toString() { throw new RuntimeException("Dont call this"); - }} + } +} diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 803b2e15..07f43b58 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -252,3 +252,4 @@ PacketsEnabled: # Added to support a Chinese Minecraft Server which uses their own skin server unless the UUID is not version 4. # Changing this from 4 to say, 3. Means their server will fetch skins from Mojang instead. UUIDVersion: 4 +# %%__USER__%% \ No newline at end of file