Newer
Older
KeeperJerry_Launcher / Launcher / source-authlib / yggdrasil / YggdrasilSocialInteractionsService.java
@xmsss xmsss on 28 Feb 2021 728 bytes Suck, Paper
package com.mojang.authlib.yggdrasil;

import com.mojang.authlib.minecraft.*;
import com.mojang.authlib.*;
import com.mojang.authlib.exceptions.*;
import java.util.*;

public class YggdrasilSocialInteractionsService implements SocialInteractionsService {
    public YggdrasilSocialInteractionsService(final YggdrasilAuthenticationService authenticationService, final String accessToken, final Environment env) throws AuthenticationException {
    }

    public boolean serversAllowed() {
        return true;
    }

    public boolean realmsAllowed() {
        return false;
    }

    public boolean chatAllowed() {
        return true;
    }

    public boolean isBlockedPlayer(final UUID uuid) {
        return false;
    }
}