Make PlayerInfo map public (#8655)

This commit is contained in:
Даркнесс#3729
2023-06-01 01:26:04 +03:00
committed by GitHub
parent 2f675a3b75
commit 94caca680a

View File

@@ -26,8 +26,8 @@ public class Administration{
private boolean modified, loaded;
/** All player info. Maps UUIDs to info. This persists throughout restarts. Do not access directly. */
private ObjectMap<String, PlayerInfo> playerInfo = new ObjectMap<>();
/** All player info. Maps UUIDs to info. This persists throughout restarts. Do not modify directly. */
public ObjectMap<String, PlayerInfo> playerInfo = new ObjectMap<>();
public Administration(){
load();