I don't want to be that guy, but it's really not necessary to store data in PlayerData.conf for players who don't have any tickets or relevant data for MMCTickets to use. The only logical reason I could come up with to justify this is if it were to prevent null values when checking the config file, but that's what Optionals are for and you could easily substitute values if needed and only store player data when absolutely necessary instead of creating a large text file with no useful information in it.
I don't want to be that guy, but it's really not necessary to store data in
PlayerData.conf
for players who don't have any tickets or relevant data for MMCTickets to use. The only logical reason I could come up with to justify this is if it were to prevent null values when checking the config file, but that's whatOptional
s are for and you could easily substitute values if needed and only store player data when absolutely necessary instead of creating a large text file with no useful information in it.