Typo fixes and command clarifications/cleanup.

Also re-disable the gradle daemon. It doesn't always play nice with
ForgeGradle and hogs ram.
This commit is contained in:
wizjany
2019-07-03 13:01:59 -04:00
parent 625cbe5e3d
commit a2b3aabbbf
9 changed files with 45 additions and 24 deletions

View File

@ -92,8 +92,7 @@ public class ClipboardCommands {
@Command(
name = "/cut",
desc = "Cut the selection to the clipboard",
descFooter = "WARNING: Cutting and pasting entities cannot be undone!"
desc = "Cut the selection to the clipboard"
)
@CommandPermissions("worldedit.clipboard.cut")
@Logging(REGION)
@ -105,7 +104,7 @@ public class ClipboardCommands {
boolean copyEntities,
@Switch(name = 'b', desc = "Also copy biomes, source biomes are unaffected")
boolean copyBiomes,
@ArgFlag(name = 'm', desc = "Set the exclude mask, matching blocks become air", def = "")
@ArgFlag(name = 'm', desc = "Set the exclude mask, non-matching blocks become air", def = "")
Mask mask) throws WorldEditException {
BlockArrayClipboard clipboard = new BlockArrayClipboard(region);