mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-01 12:42:05 -07:00
Changed BlockCanBuildEvent to store the int and not the material
By: durron597 <martin.jared@gmail.com>
This commit is contained in:
@@ -12,12 +12,12 @@ import org.bukkit.event.Cancellable;
|
|||||||
*/
|
*/
|
||||||
public class BlockCanBuildEvent extends BlockEvent {
|
public class BlockCanBuildEvent extends BlockEvent {
|
||||||
protected boolean buildable;
|
protected boolean buildable;
|
||||||
protected Material material;
|
protected int material;
|
||||||
|
|
||||||
public BlockCanBuildEvent(Type type, Block block, Material mat, boolean canBuild) {
|
public BlockCanBuildEvent(Type type, Block block, int id, boolean canBuild) {
|
||||||
super(type, block);
|
super(type, block);
|
||||||
buildable = canBuild;
|
buildable = canBuild;
|
||||||
material = mat;
|
material = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -38,10 +38,10 @@ public class BlockCanBuildEvent extends BlockEvent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Material getMaterial() {
|
public Material getMaterial() {
|
||||||
return material;
|
return Material.getMaterial(material);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getMaterialID() {
|
public int getMaterialID() {
|
||||||
return material.getID();
|
return material;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user