mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 21:56:47 +01:00
36 lines
1.0 KiB
Java
36 lines
1.0 KiB
Java
package com.gmail.nossr50.runnables;
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
import com.gmail.nossr50.util.BlockUtils;
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.block.BlockFace;
|
|
import org.bukkit.scheduler.BukkitRunnable;
|
|
|
|
public class StickyPistonTrackerTask extends BukkitRunnable {
|
|
private BlockFace direction;
|
|
private Block block;
|
|
private Block movedBlock;
|
|
|
|
public StickyPistonTrackerTask(BlockFace direction, Block block, Block movedBlock) {
|
|
this.direction = direction;
|
|
this.block = block;
|
|
this.movedBlock = movedBlock;
|
|
}
|
|
|
|
@Override
|
|
public void run() {
|
|
if (!mcMMO.getPlaceStore().isTrue(movedBlock.getRelative(direction))) {
|
|
return;
|
|
}
|
|
|
|
if (!BlockUtils.isPistonPiece(movedBlock.getState())) {
|
|
// The block didn't move
|
|
return;
|
|
}
|
|
|
|
// The sticky piston actually pulled the block so move the PlaceStore data
|
|
mcMMO.getPlaceStore().setFalse(movedBlock.getRelative(direction));
|
|
mcMMO.getPlaceStore().setTrue(movedBlock);
|
|
}
|
|
}
|