diff --git a/docs/modules/gear/items.mdx b/docs/modules/gear/items.mdx
index 8a9a05f2..d88fb0ee 100644
--- a/docs/modules/gear/items.mdx
+++ b/docs/modules/gear/items.mdx
@@ -374,8 +374,9 @@ _Examples_
Attribute modifiers can be applied to items in the same way they are applied to kits.
See [Attribute Kits](/docs/modules/gear/kits#attribute-modifier-kits-removable) for details.
-Additionally, a `slot` can be specified, in which case the modifier will only be applied
-when the item is in that slot. This must be an [armor or hand slot](/docs/reference/items/inventory).
+Additionally, a `slot` can be specified, in which case the modifier will only be applied when the item is in that slot.
+This must be an equipment slot or [equipment slot group](/docs/reference/items/inventory#inventory-slots).
+This is not available in Minecraft 1.8.
_Examples_
@@ -387,7 +388,8 @@ _Examples_
```xml

The attribute of items accepts the slot number which has been visualized to the left.
+The attribute of items accepts the slot number which has been visualized in the figure. The values provided in the table below are also accepted.
+ + | Slot Value | Description | + |---|---| + | `any` | Any equipment slot, the default if not set. | + | `mainhand` || + | `offhand` || + | `hand` | Either main or off-hand. | + | `feet` || + | `legs` || + | `chest` || + | `head` || + | `armor` | Any armor piece. | + | `body` | Used for entities with no feet/legs/chest/head distinction, e.g. horses with armor. |
|
| Bordure | BORDER |
|
| Field Masoned | BRICKS |
|
diff --git a/package-lock.json b/package-lock.json
index 5af1778f..010f85f2 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -24,7 +24,8 @@
"react-dom": "^19.2.5"
},
"devDependencies": {
- "@docusaurus/module-type-aliases": "^3.9.2"
+ "@docusaurus/module-type-aliases": "^3.9.2",
+ "baseline-browser-mapping": "^2.9.19"
},
"engines": {
"node": ">=22.0"
diff --git a/package.json b/package.json
index 2a5b621a..bc7205c9 100644
--- a/package.json
+++ b/package.json
@@ -35,7 +35,8 @@
"react-dom": "^19.2.5"
},
"devDependencies": {
- "@docusaurus/module-type-aliases": "^3.9.2"
+ "@docusaurus/module-type-aliases": "^3.9.2",
+ "baseline-browser-mapping": "^2.9.19"
},
"browserslist": {
"production": [
diff --git a/static/img/modules/score-display-circle.png b/static/img/modules/score-display-circle.png
index ce2bd267..22da081d 100644
Binary files a/static/img/modules/score-display-circle.png and b/static/img/modules/score-display-circle.png differ
diff --git a/static/img/modules/score-display-numerical.png b/static/img/modules/score-display-numerical.png
index b8b27fc3..1a070d1c 100644
Binary files a/static/img/modules/score-display-numerical.png and b/static/img/modules/score-display-numerical.png differ
diff --git a/static/img/modules/score-display-pipe.png b/static/img/modules/score-display-pipe.png
index 1e790356..2d5133c2 100644
Binary files a/static/img/modules/score-display-pipe.png and b/static/img/modules/score-display-pipe.png differ
diff --git a/static/img/modules/score-display-square.png b/static/img/modules/score-display-square.png
index 8de1a521..715b7e69 100644
Binary files a/static/img/modules/score-display-square.png and b/static/img/modules/score-display-square.png differ
diff --git a/static/img/reference/inventory-slots.png b/static/img/reference/inventory-slots.png
index 0dc23fd4..dfea6ee1 100644
Binary files a/static/img/reference/inventory-slots.png and b/static/img/reference/inventory-slots.png differ