This commit is contained in:
Chayapak 2024-10-26 17:06:43 +07:00
parent a948ef84e2
commit ef5ec8dc27

View file

@ -31,8 +31,8 @@ public class PlayersPersistentDataPlugin extends PlayersPlugin.Listener {
public void playerJoined(PlayerEntry target) {
final JsonObject object = new JsonObject();
object.addProperty("uuid", target.profile.getIdAsString());
object.add("lastSeen", new JsonObject());
object.add("ips", new JsonObject());
if (!object.has("lastSeen")) object.add("lastSeen", new JsonObject());
if (!object.has("ips")) object.add("ips", new JsonObject());
final CompletableFuture<String> future = bot.players.getPlayerIP(target);