cn.nukkit.dispenser.DyeDispenseBehavior Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.dispenser;
import cn.nukkit.block.*;
import cn.nukkit.item.Item;
import cn.nukkit.math.BlockFace;
public class DyeDispenseBehavior extends DefaultDispenseBehavior {
@Override
public Item dispense(BlockDispenser block, BlockFace face, Item item) {
Block target = block.getSide(face);
if (item.isFertilizer()) {
if (target instanceof BlockCrops || target instanceof BlockSapling || target instanceof BlockTallGrass
|| target instanceof BlockDoublePlant || target instanceof BlockMushroom) {
target.onActivate(item);
} else {
this.success = false;
}
return null;
}
return super.dispense(block, face, item);
}
}