Skip to content

Commit

Permalink
Stop clearing stuff for a second
Browse files Browse the repository at this point in the history
  • Loading branch information
cjburkey01 committed May 19, 2024
1 parent 60e84e4 commit d927e74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ public void load() throws Exception {
if (claimedChunks.values().stream().allMatch(c -> c.playerPermissions == null)) {
// If all playerPermissions are null, then the JSON files are in the pre 0.0.24 format
loadPre0024Data();
Utils.log("Performing 0.0.23 to 0.0.24+ player data format");
} else if (joinedPlayersFile != null && joinedPlayersFile.exists()) {
joinedPlayers.clear();
for (FullPlayerData player : loadJsonFile(joinedPlayersFile, FullPlayerData[].class)) {
joinedPlayers.put(player.player, player);
}
Expand Down

0 comments on commit d927e74

Please sign in to comment.