Skip to content

Commit

Permalink
Fix getLoginIp method returning UUID instead of last IP (Elytrium#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wruczek committed Mar 20, 2023
1 parent 3f5c7e4 commit e6a790b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public String getPremiumUuid() {
}

public String getLoginIp() {
return this.loginIp == null ? "" : this.uuid;
return this.loginIp == null ? "" : this.loginIp;
}

public RegisteredPlayer setLoginIp(String loginIp) {
Expand Down

0 comments on commit e6a790b

Please sign in to comment.