From 8ab7680e6bf316795fa895762d43b313186c2822 Mon Sep 17 00:00:00 2001 From: CraftBukkit/Spigot Date: Sun, 17 Jul 2011 00:19:25 +0200 Subject: [PATCH] Implemented BLOCK_PISTON_CONTRACT/EXPAND By: Erik Broes --- .../org/bukkit/craftbukkit/block/CraftBlock.java | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/paper-server/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java b/paper-server/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java index 5835a6f38..2faffdf5f 100644 --- a/paper-server/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java +++ b/paper-server/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java @@ -3,6 +3,7 @@ package org.bukkit.craftbukkit.block; import org.bukkit.block.BlockFace; import org.bukkit.block.Biome; import org.bukkit.block.Block; +import org.bukkit.block.PistonMoveReaction; import net.minecraft.server.BiomeBase; import net.minecraft.server.BlockRedstoneWire; @@ -222,7 +223,11 @@ public class CraftBlock implements Block { * @return Block at the given offsets */ public Block getRelative(BlockFace face) { - return getRelative(face.getModX(), face.getModY(), face.getModZ()); + return getRelative(face, 1); + } + + public Block getRelative(BlockFace face, int distance) { + return getRelative(face.getModX() * distance, face.getModY() * distance, face.getModZ() * distance); } /** @@ -418,4 +423,9 @@ public class CraftBlock implements Block { public boolean isLiquid() { return (getType() == Material.WATER) || (getType() == Material.STATIONARY_WATER) || (getType() == Material.LAVA) || (getType() == Material.STATIONARY_LAVA); } + + public PistonMoveReaction getPistonMoveReaction() { + return PistonMoveReaction.getById(net.minecraft.server.Block.byId[this.getTypeId()].material.j()); + + } }