Examples of MCorePermissionDeniedFormatEvent


Examples of com.massivecraft.mcore.event.MCorePermissionDeniedFormatEvent

    return desc;
  }
 
  public static String getDeniedFormat(String perm)
  {
    MCorePermissionDeniedFormatEvent event = new MCorePermissionDeniedFormatEvent(perm);
    event.run();
    String ret = event.getFormat();
    if (ret == null) ret = Lang.PERM_DEFAULT_DENIED_FORMAT;
    return ret;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.