From ddb5fb22cdd844c4eb144ed70d3440a68c3a8d6a Mon Sep 17 00:00:00 2001 From: samo_lego <34912839+samolego@users.noreply.github.com> Date: Sat, 4 Apr 2020 12:37:40 +0200 Subject: [PATCH] Config color polishing Some fixes --- README.md | 2 +- src/main/java/org/samo_lego/simpleauth/SimpleAuth.java | 2 +- .../org/samo_lego/simpleauth/commands/LoginCommand.java | 1 - .../java/org/samo_lego/simpleauth/utils/AuthConfig.java | 8 ++++---- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a818fe7..b47dbd6 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Requires Fabric API. ## Setup -1. Clone the repository. +1. Clone the repository. Then run `./gradlew genSources` 2. Edit the code you want. 3. To build run the following command: diff --git a/src/main/java/org/samo_lego/simpleauth/SimpleAuth.java b/src/main/java/org/samo_lego/simpleauth/SimpleAuth.java index 79a846f..14556d9 100644 --- a/src/main/java/org/samo_lego/simpleauth/SimpleAuth.java +++ b/src/main/java/org/samo_lego/simpleauth/SimpleAuth.java @@ -34,7 +34,7 @@ public class SimpleAuth implements DedicatedServerModInitializer { public static SimpleAuthDatabase db = new SimpleAuthDatabase(); - // HashSet of players that are not authenticated + // HashMap of players that are not authenticated // Rather than storing all the authenticated players, we just store ones that are not authenticated public static HashMap deauthenticatedUsers = new HashMap<>(); diff --git a/src/main/java/org/samo_lego/simpleauth/commands/LoginCommand.java b/src/main/java/org/samo_lego/simpleauth/commands/LoginCommand.java index d858207..cf269f9 100644 --- a/src/main/java/org/samo_lego/simpleauth/commands/LoginCommand.java +++ b/src/main/java/org/samo_lego/simpleauth/commands/LoginCommand.java @@ -37,7 +37,6 @@ public class LoginCommand { // Method called for checking the password private static int login(ServerCommandSource source, String pass) throws CommandSyntaxException { // Getting the player who send the command - System.out.println(maxLoginTries); ServerPlayerEntity player = source.getPlayer(); if(SimpleAuth.isAuthenticated(player)) { diff --git a/src/main/java/org/samo_lego/simpleauth/utils/AuthConfig.java b/src/main/java/org/samo_lego/simpleauth/utils/AuthConfig.java index 7215929..728b2c7 100644 --- a/src/main/java/org/samo_lego/simpleauth/utils/AuthConfig.java +++ b/src/main/java/org/samo_lego/simpleauth/utils/AuthConfig.java @@ -70,12 +70,12 @@ public class AuthConfig { public String enterNewPassword = "§4You need to enter new password!"; public String wrongPassword = "§4Wrong password!"; public String matchPassword = "§6Passwords must match!"; - public String passwordUpdated = "§4Your password was updated successfully!"; + public String passwordUpdated = "§aYour password was updated successfully!"; public String loginRequired = "§cYou are not authenticated!\n§6Use /login to authenticate!"; public String loginTriesExceeded = "§4Too many login tries."; public String globalPasswordSet = "§aGlobal password was successfully set!"; - public String cannotChangePassword = "§aYou cannot change password!"; - public String cannotUnregister = "§aYou cannot unregister this account!"; + public String cannotChangePassword = "§6You cannot change password!"; + public String cannotUnregister = "§6You cannot unregister this account!"; public String notAuthenticated = "§cYou are not authenticated!\n§6Try with /login or /register."; public String alreadyAuthenticated = "§6You are already authenticated."; public String successfullyAuthenticated = "§aYou are now authenticated."; @@ -85,7 +85,7 @@ public class AuthConfig { public String registerSuccess = "§aYou are now authenticated."; public String userdataDeleted = "§aUserdata deleted."; public String userdataUpdated = "§aUserdata updated."; - public String accountDeleted = "§4Your account was successfully deleted!"; + public String accountDeleted = "§aYour account was successfully deleted!"; public String configurationReloaded = "§aConfiguration file was reloaded successfully."; } private static final Logger LOGGER = LogManager.getLogger();