Bungeecord support added x19
This commit is contained in:
parent
6543120df3
commit
cdd9412ea2
common/src/main/java/com/alterdekim/xcraft/auth
@ -250,7 +250,7 @@ public class SaltNic extends NanoHTTPD {
|
||||
}
|
||||
|
||||
MinecraftTexturesPayload minecraftTexturesPayload = new MinecraftTexturesPayload(System.currentTimeMillis(), uuid, this.storage.getUsername(uuid), textures);
|
||||
return new MinecraftProperty("textures", Base64.getEncoder().encodeToString(JsonStream.serialize(minecraftTexturesPayload).getBytes()));
|
||||
return new MinecraftProperty("textures", Base64.getEncoder().encodeToString(JsonStream.serialize(minecraftTexturesPayload).getBytes()), (Math.random()+""));
|
||||
}
|
||||
|
||||
private Response handleProfileRequest(IHTTPSession session, String uri) {
|
||||
|
@ -8,4 +8,5 @@ import lombok.Getter;
|
||||
public class MinecraftProperty {
|
||||
private String name;
|
||||
private String value;
|
||||
private String signature;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user