mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-09 04:02:10 +01:00
commit
8122a3bf1e
@ -591,6 +591,18 @@ public class AdminCommand implements CommandExecutor {
|
|||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
sender.sendMessage("An error occured while trying to get that player!");
|
sender.sendMessage("An error occured while trying to get that player!");
|
||||||
}
|
}
|
||||||
|
} else if (args[0].equalsIgnoreCase("resetname")) {
|
||||||
|
Bukkit.getScheduler().runTaskAsynchronously(plugin, new Runnable() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
List<PlayerAuth> auths = plugin.database.getAllAuths();
|
||||||
|
for (PlayerAuth auth : auths) {
|
||||||
|
auth.setRealName("Player");
|
||||||
|
plugin.database.updateSession(auth);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
sender.sendMessage("Usage: /authme reload|register playername password|changepassword playername password|unregister playername");
|
sender.sendMessage("Usage: /authme reload|register playername password|changepassword playername password|unregister playername");
|
||||||
}
|
}
|
||||||
|
@ -70,6 +70,7 @@ public class CacheDataSource implements DataSource {
|
|||||||
if (cache.containsKey(auth.getNickname())) {
|
if (cache.containsKey(auth.getNickname())) {
|
||||||
cache.get(auth.getNickname()).setIp(auth.getIp());
|
cache.get(auth.getNickname()).setIp(auth.getIp());
|
||||||
cache.get(auth.getNickname()).setLastLogin(auth.getLastLogin());
|
cache.get(auth.getNickname()).setLastLogin(auth.getLastLogin());
|
||||||
|
cache.get(auth.getNickname()).setRealName(auth.getRealName());
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -517,10 +517,11 @@ public class MySQL implements DataSource {
|
|||||||
PreparedStatement pst = null;
|
PreparedStatement pst = null;
|
||||||
try {
|
try {
|
||||||
con = makeSureConnectionIsReady();
|
con = makeSureConnectionIsReady();
|
||||||
pst = con.prepareStatement("UPDATE " + tableName + " SET " + columnIp + "=?, " + columnLastLogin + "=? WHERE LOWER(" + columnName + ")=?;");
|
pst = con.prepareStatement("UPDATE " + tableName + " SET " + columnIp + "=?, " + columnLastLogin + "=?, " + columnRealName + "=? WHERE LOWER(" + columnName + ")=?;");
|
||||||
pst.setString(1, auth.getIp());
|
pst.setString(1, auth.getIp());
|
||||||
pst.setLong(2, auth.getLastLogin());
|
pst.setLong(2, auth.getLastLogin());
|
||||||
pst.setString(3, auth.getNickname());
|
pst.setString(3, auth.getRealName());
|
||||||
|
pst.setString(4, auth.getNickname());
|
||||||
pst.executeUpdate();
|
pst.executeUpdate();
|
||||||
} catch (SQLException ex) {
|
} catch (SQLException ex) {
|
||||||
ConsoleLogger.showError(ex.getMessage());
|
ConsoleLogger.showError(ex.getMessage());
|
||||||
|
Loading…
Reference in New Issue
Block a user