mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 22:56:45 +01:00
Check player data for corruption
Fixed a null pointer exception that occurred with corrupted player data
This commit is contained in:
parent
5b2ebf4aa8
commit
a7314b8124
@ -296,6 +296,11 @@ public final class CommandUtils {
|
|||||||
|
|
||||||
for (OfflinePlayer offlinePlayer : mcMMO.p.getServer().getOfflinePlayers()) {
|
for (OfflinePlayer offlinePlayer : mcMMO.p.getServer().getOfflinePlayers()) {
|
||||||
String playerName = offlinePlayer.getName();
|
String playerName = offlinePlayer.getName();
|
||||||
|
|
||||||
|
if (playerName == null) { //Do null checking here to detect corrupted data before sending it throuogh .equals
|
||||||
|
System.err.println("[McMMO] Bad player data file with UIID " + offlinePlayer.getUniqueId() );
|
||||||
|
continue; //Don't let an error here interrupt the loop
|
||||||
|
}
|
||||||
|
|
||||||
if (partialName.equalsIgnoreCase(playerName)) {
|
if (partialName.equalsIgnoreCase(playerName)) {
|
||||||
// Exact match
|
// Exact match
|
||||||
|
Loading…
Reference in New Issue
Block a user