mirror of
https://github.com/songoda/EpicHeads.git
synced 2025-01-05 23:58:46 +01:00
Fixed issue with favorites initializing as null.
This commit is contained in:
parent
0d4120e5fa
commit
4781952ab8
@ -20,7 +20,8 @@ public class EPlayer {
|
||||
|
||||
public EPlayer(UUID uuid, List<String> favorites) {
|
||||
this.uuid = uuid;
|
||||
this.favorites = favorites;
|
||||
if (favorites != null)
|
||||
this.favorites = favorites;
|
||||
}
|
||||
|
||||
public UUID getUuid() {
|
||||
|
Loading…
Reference in New Issue
Block a user