2012-06-08 15:28:36 +02:00
|
|
|
package com.Acrobot.Breeze.Utils;
|
|
|
|
|
|
|
|
import org.bukkit.block.Block;
|
|
|
|
import org.bukkit.block.Sign;
|
2012-07-07 19:24:06 +02:00
|
|
|
import org.bukkit.material.Attachable;
|
2012-06-08 15:28:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Acrobot
|
|
|
|
*/
|
|
|
|
public class BlockUtil {
|
|
|
|
/**
|
|
|
|
* Checks if the block is a sign
|
|
|
|
*
|
|
|
|
* @param block Block to check
|
|
|
|
* @return Is this block a sign?
|
|
|
|
*/
|
|
|
|
public static boolean isSign(Block block) {
|
|
|
|
return block.getState() instanceof Sign;
|
|
|
|
}
|
2012-07-07 19:24:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the block to which the sign is attached
|
|
|
|
*
|
|
|
|
* @param sign Sign which is attached
|
|
|
|
* @return Block to which the sign is attached
|
|
|
|
*/
|
|
|
|
public static Block getAttachedFace(Sign sign) {
|
|
|
|
return sign.getBlock().getRelative(((Attachable) sign.getData()).getAttachedFace());
|
|
|
|
}
|
2012-06-08 15:28:36 +02:00
|
|
|
}
|