Skip to content

Commit

Permalink
Fix player data save bug: modplayerData back to modplayerdata
Browse files Browse the repository at this point in the history
  • Loading branch information
John-Paul-R committed Jul 29, 2022
1 parent 59c5062 commit e63d504
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static PlayerData create(ServerPlayerEntity player) {
}

private static File getPlayerDataFile(ServerPlayerEntity player) throws IOException {
return FileUtil.getOrCreateWorldDirectory(player.getServer(), "modplayerData")
return FileUtil.getOrCreateWorldDirectory(player.getServer(), "modplayerdata")
.resolve(player.getUuidAsString() + ".dat")
.toFile();
}
Expand Down

0 comments on commit e63d504

Please sign in to comment.