Fix method signiture for CuboidClipboard

This commit is contained in:
Jesse Boyd 2016-04-20 07:17:24 +10:00
parent 3ed58f0d37
commit 03a2dfec3f

View File

@ -177,8 +177,8 @@ public class CuboidClipboard {
return getBlock(position);
}
public boolean setBlock(Vector location, BaseBlock block) {
return setBlock(location.getBlockX(),location.getBlockY(),location.getBlockZ(), block);
public void setBlock(Vector location, BaseBlock block) {
setBlock(location.getBlockX(),location.getBlockY(),location.getBlockZ(), block);
}
public boolean setBlock(int x, int y, int z, BaseBlock block) {