diff --git a/CHANGELOG.md b/CHANGELOG.md index e5d49f8a..9b1b5cbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ######1.10 * Remove deprecated API methods from the last version +* Finally set a value to the API column ######1.9 diff --git a/core/src/main/java/com/github/games647/fastlogin/core/shared/JoinManagement.java b/core/src/main/java/com/github/games647/fastlogin/core/shared/JoinManagement.java index 4a1820e3..e1204ab1 100644 --- a/core/src/main/java/com/github/games647/fastlogin/core/shared/JoinManagement.java +++ b/core/src/main/java/com/github/games647/fastlogin/core/shared/JoinManagement.java @@ -26,6 +26,7 @@ public abstract class JoinManagement { SharedConfig config = core.getConfig(); String ip = source.getAddress().getAddress().getHostAddress(); + profile.setLastIp(ip); try { if (profile.getUserId() == -1) { if (core.getPendingLogins().remove(ip + username) != null && config.get("secondAttemptCracked", false)) {