Multiple functionalities added :
- It is now possible to apply a setposition command on a block by left-clicking it with a Book and Quil, which will then write the result in the Book and Quil.
- Added help command and added commands to minecraft /help command so that the mod is easier to understand and use.
- Added translations of the text so that people from other languages can use the mod.
Bugs fixed :
- Doors, Beds, etc. are no longer counted twice in the block count, so from now on, every count is supposed to be accurate.
- The output for a book is now split in a way that makes the resulting text much more readable (previously there could be a cut in the middle of a output row which made comprehension more difficult)
- Water and lava blocks now have their proper counts. Previously, they showed up as "Air" blocks.
Other :
- The algorithm now also counts entities (minecarts, mobs, etc.) that are within the chosen area.
- The naming of blocks is now of a more constant format.
Multiple functionalities added :
- It is now possible to use CommandBlocks to execute the counting commands (countblocks and setposition). By default, it will output in the CommandBlock's output. If you want two command blocks to execute the setposition command, you can give them the same name and the setposition will only affect those with that name. Ex. If two command blocks are named 'Joe', if one executes setposition (for the firstposition) and the other executes setposition (for the secondposition), the output will be in the second. If another command block without a name also executes setposition, it will not affect the setposition executed by 'Joe' command blocks.
- It is now possible to receive the output of the counting commands in a Book and Quill. Simply have a book and quill in hand (main or off-hand) while executing the command for the output to appear in the book. This applies both for when the command is executed by the player and by a command block. If a group of players are present on a server and they are all holding Book and Quills when a command block executes the command, they will all receive the result in each individual book.
- Because of these two new features, it is now possible to copy and paste the result using CTRL + A, CTRL + C and CTRL + V.
- A new Total row was added in the output message so that we can have the total amount of blocks.
Other :
- Code has been cleaned even more so that future changes require less total change