Java Code Examples for org.bukkit.Material#RAW_FISH

The following examples show how to use org.bukkit.Material#RAW_FISH . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ControllableOcelotBase.java    From EntityAPI with GNU Lesser General Public License v3.0 6 votes vote down vote up
@Override
public BehaviourItem[] getDefaultTargetingBehaviours() {
    return new BehaviourItem[]{
            new BehaviourItem(1, new BehaviourFloat(this)),
            new BehaviourItem(2, new BehaviourSit(this)),
            new BehaviourItem(3, new BehaviourTempt(this, Material.RAW_FISH, true, 0.6D)),
            new BehaviourItem(4, new BehaviourAvoidEntity(this, HumanEntity.class, 16.0F, 0.8D, 1.33D)),
            new BehaviourItem(5, new BehaviourFollowTamer(this, 10.0F, 5.0F)),
            new BehaviourItem(6, new BehaviourSitOnBlock(this, 1.33D)),
            new BehaviourItem(7, new BehaviourLeapAtTarget(this, 0.3F)),
            new BehaviourItem(8, new BehaviourOcelotAttack(this)),
            new BehaviourItem(9, new BehaviourBreed(this, 0.8D)),
            new BehaviourItem(10, new BehaviourRandomStroll(this, 0.8D)),
            new BehaviourItem(11, new BehaviourLookAtNearestEntity(this, HumanEntity.class, 10.0F)),
    };
}
 
Example 2
Source File: PGMListener.java    From PGM with GNU Affero General Public License v3.0 5 votes vote down vote up
@EventHandler
public void nerfFishing(PlayerFishEvent event) {
  if (event.getCaught() instanceof Item) {
    Item caught = (Item) event.getCaught();
    if (caught.getItemStack().getType() != Material.RAW_FISH) {
      caught.setItemStack(new ItemStack(Material.RAW_FISH));
    }
  }
}
 
Example 3
Source File: PGMListener.java    From ProjectAres with GNU Affero General Public License v3.0 5 votes vote down vote up
@EventHandler
public void nerfFishing(PlayerFishEvent event) {
    if (Config.Fishing.disableTreasure() && event.getCaught() instanceof Item) {
        Item caught = (Item) event.getCaught();
        if (caught.getItemStack().getType() != Material.RAW_FISH) {
            caught.setItemStack(new ItemStack(Material.RAW_FISH));
        }
    }
}