Lets show FAVS some love ❤️

This commit is contained in:
matt
2019-03-28 21:19:40 -04:00
parent 7ae8d567f3
commit 20098a78c8
29 changed files with 218 additions and 326 deletions

View File

@ -1,6 +1,7 @@
package com.thevoxelbox.voxelsniper.util;
import com.boydti.fawe.bukkit.wrapper.AsyncBlock;
import org.bukkit.Material;
import org.bukkit.World;
/**
@ -10,6 +11,7 @@ public class BlockWrapper
{
private int id;
private Material type;
private int x;
private int y;
private int z;
@ -38,6 +40,10 @@ public class BlockWrapper
return this.data;
}
public Material getType() {
return type;
}
/**
* @return the id
*/
@ -131,4 +137,9 @@ public class BlockWrapper
{
this.z = z;
}
public void setType(Material type) {
this.type = type;
}
}