aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2020-05-14 23:19:13 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2020-05-14 23:19:13 +0200
commit5331f9ed822bf7e8853c4f1c352bc87844b5d4f0 (patch)
tree43db27648df1b51b5d81c713eb0afefa20944561
parente1f3d23b79c2841f83fd2d56f6d37725f5b8a3cb (diff)
downloadparquet-5331f9ed822bf7e8853c4f1c352bc87844b5d4f0.tar.gz
Update Readme
-rw-r--r--Readme.md21
1 files changed, 17 insertions, 4 deletions
diff --git a/Readme.md b/Readme.md
index 6c5576b..609f1ea 100644
--- a/Readme.md
+++ b/Readme.md
@@ -22,11 +22,13 @@ List all player savefiles, UUIDs are resolved to names if in usercache
#### `stats`
-Query user statistics and import them to the scoreboard. This work for both online and offline players, if they are in usercache.
+Query user statistics and import them to the scoreboard. This work for both online and offline players, if they are in
+usercache.
`/savedata stats PLAYER CRITERIA [import OBJECTIVE [MULTIPLIER]]`
-If `MULTIPLIER < 0` the score is modified with `1/MULTIPLIER`, since FloatArgumentType does not support exponentials like 1.3e-4
+If `MULTIPLIER < 0` the score is modified with `1/MULTIPLIER`, since FloatArgumentType does not support exponentials
+like 1.3e-4
## Features
@@ -45,14 +47,25 @@ A dispenser pointing into a cauldron can:
A dispenser pointing into an undyed Shulker Box can apply a color.
+### Advanced Villager Trade tracking
+
+`minecraft.custom:minecraft.traded_with_villager` only counts the amount of interactions with a Villager.
+Parquet provides more granular tracking of trades by counting every item purchased from Villagers under
+`minecraft.traded:<item>`.
+
+**Note:** Since `/scoreboard` command completion is handled client-side, they might not show up and have to be entered
+manually.
+
## Fixes
### [MC-111534](https://bugs.mojang.com/browse/MC-111534)
-Stat `minecraft.used:minecraft.firework_rocket` is only incremented, when the rocket is used on the ground, not during elytra flight.
+Stat `minecraft.used:minecraft.firework_rocket` is only incremented, when the rocket is used on the ground, not during
+elytra flight.
## "Fixes"
### [MC-126244](https://bugs.mojang.com/browse/MC-126244)
-Cartographer map trade replaced with dummy map around (0,0) to mitigate server crash in large worlds due to poor implementation of locateStructure.
+Cartographer map trade replaced with dummy map around (0,0) to mitigate server crash in large worlds due to poor
+implementation of locateStructure.