mirror of
https://github.com/Zrips/Jobs.git
synced 2024-11-29 14:05:25 +01:00
24 lines
559 B
Java
24 lines
559 B
Java
package com.gamingmesh.jobs.nmsUtil;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.entity.Entity;
|
|
import org.bukkit.event.block.BlockPistonRetractEvent;
|
|
|
|
import com.gamingmesh.jobs.NMS;
|
|
|
|
public class v1_7 implements NMS {
|
|
@Override
|
|
public List<Block> getPistonRetractBlocks(BlockPistonRetractEvent event) {
|
|
List<Block> blocks = new ArrayList<Block>();
|
|
blocks.add(event.getBlock());
|
|
return blocks;
|
|
}
|
|
|
|
@Override
|
|
public boolean isElderGuardian(Entity entity) {
|
|
return false;
|
|
}
|
|
}
|