Skip to content

Commit

Permalink
Add method override for FAWE logging (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff P committed Jul 24, 2023
1 parent 9e1d5af commit 7fd50a0
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,8 @@ public <T extends BlockStateHolder<T>> boolean setBlock(BlockVector3 position, T
return false;
}

public <T extends BlockStateHolder<T>> boolean setBlock(int x, int y, int z, T block) throws WorldEditException {
return setBlock(BlockVector3.at(x,y,z), block);
}

}

0 comments on commit 7fd50a0

Please sign in to comment.