3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-24 19:18:02 +02:00

Added Javadocs for EditSession.stackCuboidRegion()

Dieser Commit ist enthalten in:
sk89q 2010-10-11 10:27:18 -07:00
Ursprung 5d0316aa00
Commit 7823aa2a6c

Datei anzeigen

@ -579,6 +579,18 @@ public class EditSession {
return affected;
}
/**
* Stack a cuboid region.
*
* @param region
* @param xm
* @param ym
* @param zm
* @param count
* @param copyAir
* @return number of blocks affected
* @throws MaxChangedBlocksException
*/
public int stackCuboidRegion(Region region, int xm, int ym, int zm,
int count, boolean copyAir)
throws MaxChangedBlocksException {