45 lines
1001 B
Java
45 lines
1001 B
Java
package org.bukkit.material;
|
|
|
|
import org.bukkit.Material;
|
|
|
|
/**
|
|
* Represents a powered rail
|
|
*/
|
|
public class PoweredRail extends ExtendedRails implements Redstone {
|
|
public PoweredRail() {
|
|
super(Material.LEGACY_POWERED_RAIL);
|
|
}
|
|
|
|
public PoweredRail(final Material type) {
|
|
super(type);
|
|
}
|
|
|
|
/**
|
|
* @param type the type
|
|
* @param data the raw data value
|
|
* @deprecated Magic value
|
|
*/
|
|
@Deprecated
|
|
public PoweredRail(final Material type, final byte data) {
|
|
super(type, data);
|
|
}
|
|
|
|
public boolean isPowered() {
|
|
return (getData() & 0x8) == 0x8;
|
|
}
|
|
|
|
/**
|
|
* Set whether this PoweredRail should be powered or not.
|
|
*
|
|
* @param isPowered whether or not the rail is powered
|
|
*/
|
|
public void setPowered(boolean isPowered) {
|
|
setData((byte) (isPowered ? (getData() | 0x8) : (getData() & ~0x8)));
|
|
}
|
|
|
|
@Override
|
|
public PoweredRail clone() {
|
|
return (PoweredRail) super.clone();
|
|
}
|
|
}
|