mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
Added particle and sound effects to the single super pickaxe.
This commit is contained in:
parent
36fbfa409f
commit
cc0e39b493
@ -59,7 +59,6 @@ import com.sk89q.worldedit.EditSession;
|
||||
import com.sk89q.worldedit.LocalWorld;
|
||||
import com.sk89q.worldedit.Vector;
|
||||
import com.sk89q.worldedit.Vector2D;
|
||||
import com.sk89q.worldedit.WorldVector;
|
||||
import com.sk89q.worldedit.blocks.*;
|
||||
import com.sk89q.worldedit.EntityType;
|
||||
import com.sk89q.worldedit.regions.Region;
|
||||
|
@ -37,7 +37,8 @@ public class SinglePickaxe implements BlockTool {
|
||||
LocalPlayer player, LocalSession session, WorldVector clicked) {
|
||||
LocalWorld world = clicked.getWorld();
|
||||
|
||||
if (world.getBlockType(clicked) == BlockID.BEDROCK
|
||||
final int blockType = world.getBlockType(clicked);
|
||||
if (blockType == BlockID.BEDROCK
|
||||
&& !player.canDestroyBedrock()) {
|
||||
return true;
|
||||
}
|
||||
@ -48,6 +49,8 @@ public class SinglePickaxe implements BlockTool {
|
||||
|
||||
world.setBlockType(clicked, BlockID.AIR);
|
||||
|
||||
world.playEffect(clicked, 2001, blockType);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user