Show number of affected blocks in //set command (#1703)

* Show # of blocks affected in //set

* Fix typo

* fix: Add amount of blocks affected to strings.json

Co-authored-by: NotMyFault <mc.cache@web.de>
This commit is contained in:
Orlaando 2022-04-19 00:55:19 -06:00 committed by GitHub
parent 27ee46047e
commit 3610af15e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -116,7 +116,8 @@ public class RegionCommands {
) {
int affected = editSession.setBlocks(region, pattern);
if (affected != 0) {
actor.print(Caption.of("worldedit.set.done"));
actor.print(Caption.of("worldedit.set.done", TextComponent.of(affected)));
}
return affected;
}

View File

@ -444,7 +444,7 @@
"worldedit.rotate.rotated": "The clipboard copy has been rotated.",
"worldedit.flip.flipped": "The clipboard copy has been flipped.",
"worldedit.clearclipboard.cleared": "Clipboard cleared.",
"worldedit.set.done": "Operation completed.",
"worldedit.set.done": "Operation completed ({0}).",
"worldedit.set.done.verbose": "Operation completed ({0}).",
"worldedit.line.changed": "{0} blocks have been changed.",
"worldedit.line.invalid-type": "//line only works with cuboid selections or convex polyhedral selections",