![JAR search and dependency download from the Maven repository](/logo.png)
cn.nukkit.dispenser.FlintAndSteelDispenseBehavior 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.Block;
import cn.nukkit.block.BlockDispenser;
import cn.nukkit.block.BlockID;
import cn.nukkit.item.Item;
import cn.nukkit.math.BlockFace;
public class FlintAndSteelDispenseBehavior extends DefaultDispenseBehavior {
@Override
public Item dispense(BlockDispenser block, BlockFace face, Item item) {
Block target = block.getSide(face);
if (target.getId() == BlockID.AIR) {
block.level.setBlock(target, Block.get(BlockID.FIRE));
} else if (target.getId() == BlockID.TNT) {
target.onActivate(item);
} else {
this.success = false;
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy