Package com.github.zathrus_writer.commandsex.helpers

Examples of com.github.zathrus_writer.commandsex.helpers.Common


   */
 
  public static void toggleGod(Player player){
    // initialize event listeners if they have not already been enabled
    if (Common.plugin == null){
      new Common();
    }
   
    if (isPlayerGod(player)){
      Common.godPlayers.remove(player.getName());
    } else {
View Full Code Here


   */
 
  public static void toggleFrozen(Player player){
    // initialize event listeners if they have not been enabled already
    if (Common.plugin == null){
      new Common();
    }
   
    if (isPlayerFrozen(player)){
      Common.frozenPlayers.remove(player.getName());
    } else {
View Full Code Here

TOP

Related Classes of com.github.zathrus_writer.commandsex.helpers.Common

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.