Exemplo n.º 1
0
 private static void checkExist(String playerName) {
   Accounts acc = new Accounts();
   if (!acc.exists(playerName)) {
     acc.create(playerName);
   }
 }