Merge branch 'RELEASE-2023.03-LUCKPERMS' into proper-resultset-retrieval

This commit is contained in:
Paul Reilly
2023-04-10 21:36:50 -05:00
172 changed files with 1862 additions and 550 deletions

View File

@ -39,7 +39,7 @@ public class Admin
this.uuid = UUID.fromString(resultSet.getString("uuid"));
this.active = resultSet.getBoolean("active");
this.rank = GroupProvider.fromArgument(resultSet.getString("rank")).getGroup();
this.rank = GroupProvider.fromString(resultSet.getString("rank")).getGroup();
this.ips.clear();
this.ips.addAll(FUtil.stringToList(resultSet.getString("ips")));
this.lastLogin = new Date(resultSet.getLong("last_login"));