lol i forgot to add coins to player data

This commit is contained in:
spacerocket62
2020-10-27 14:30:57 -07:00
parent 5400581b3d
commit 9dfc351ebe
4 changed files with 12 additions and 3 deletions

View File

@ -33,6 +33,8 @@ public class PlexPlayer
private String loginMSG;
private String prefix;
private long coins;
private Rank rank;
private List<String> ips;
@ -50,6 +52,8 @@ public class PlexPlayer
this.loginMSG = "";
this.prefix = "";
this.coins = 0;
this.ips = new ArrayList<>();
this.rank = null;