mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-15 13:28:35 +00:00
Lets show FAVS some love ❤️
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user