mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-07-05 05:46:41 +00:00
Adjusting some stuff :)
This commit is contained in:
@ -38,7 +38,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"));
|
||||
@ -70,15 +70,15 @@ public class Admin
|
||||
public Map<String, Object> toSQLStorable()
|
||||
{
|
||||
HashMap<String, Object> map = new HashMap<>();
|
||||
map.put("uuid", uuid.toString());
|
||||
map.put("active", active);
|
||||
map.put("rank", rank.toString());
|
||||
map.put("ips", FUtil.listToString(ips));
|
||||
map.put("last_login", lastLogin.getTime());
|
||||
map.put("command_spy", commandSpy);
|
||||
map.put("potion_spy", potionSpy);
|
||||
map.put("ac_format", acFormat);
|
||||
return map;
|
||||
map.put("uuid", uuid.toString());
|
||||
map.put("active", active);
|
||||
map.put("rank", rank.toString());
|
||||
map.put("ips", FUtil.listToString(ips));
|
||||
map.put("last_login", lastLogin.getTime());
|
||||
map.put("command_spy", commandSpy);
|
||||
map.put("potion_spy", potionSpy);
|
||||
map.put("ac_format", acFormat);
|
||||
return map;
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user