Skip to content
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.

Added DiscordJoinRequest.discriminator

Compare
Choose a tag to compare
@MinnDevelopment MinnDevelopment released this 02 Dec 07:33
· 41 commits to master since this release

You can now do the following:

public class MyApp
{
// ...
    public static void onJoinRequest(DiscordJoinRequest request) {
        System.out.printf("%s#%s requests to join party!\n", request.username, request.discriminator);
    }
// ...
}