Package com.massivecraft.mcore.event

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

Related Classes of com.massivecraft.mcore.event.MCorePermissionDeniedFormatEvent

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.