Package net.pterodactylus.sone.data.Sone

Examples of net.pterodactylus.sone.data.Sone.ShowCustomAvatars


      Sone remoteSone = profile.getSone();
      if (remoteSone.isLocal()) {
        /* always show your own avatars. */
        return avatarId;
      }
      ShowCustomAvatars showCustomAvatars = currentSone.getOptions().<ShowCustomAvatars> getEnumOption("ShowCustomAvatars").get();
      if (showCustomAvatars == ShowCustomAvatars.NEVER) {
        return null;
      }
      if (showCustomAvatars == ShowCustomAvatars.ALWAYS) {
        return avatarId;
View Full Code Here

TOP

Related Classes of net.pterodactylus.sone.data.Sone.ShowCustomAvatars

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.