@@ -9,25 +9,16 @@ import org.bukkit.block.BlockFace;
|
||||
public class TripwireHook extends SimpleAttachableMaterialData implements Redstone {
|
||||
|
||||
public TripwireHook() {
|
||||
super(Material.TRIPWIRE_HOOK);
|
||||
super(Material.LEGACY_TRIPWIRE_HOOK);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param type the raw type id
|
||||
* @deprecated Magic value
|
||||
*/
|
||||
@Deprecated
|
||||
public TripwireHook(final int type) {
|
||||
super(type);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param type the raw type id
|
||||
* @param type the type
|
||||
* @param data the raw data value
|
||||
* @deprecated Magic value
|
||||
*/
|
||||
@Deprecated
|
||||
public TripwireHook(final int type, final byte data) {
|
||||
public TripwireHook(final Material type, final byte data) {
|
||||
super(type, data);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user