Package net.crystalyx.bukkit.simplyperms.preventions

Source Code of net.crystalyx.bukkit.simplyperms.preventions.Monster

package net.crystalyx.bukkit.simplyperms.preventions;

import net.crystalyx.bukkit.simplyperms.SimplyPlugin;
import net.crystalyx.bukkit.simplyperms.SimplyPrevents;

import org.bukkit.entity.Entity;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.entity.EntityTargetEvent;

public class Monster extends SimplyPrevents {

  public Monster(SimplyPlugin plugin) {
    super(plugin);
  }

  @EventHandler(priority = EventPriority.LOWEST)
  public void monster(EntityTargetEvent event) {
    Entity target = event.getTarget();
    if (target instanceof Player) {
      prevent(event, (Player) target, "monster");
    }
  }
 
}
TOP

Related Classes of net.crystalyx.bukkit.simplyperms.preventions.Monster

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.