From 5d5a675557ab61be0eed64ef113a076aa45c51b7 Mon Sep 17 00:00:00 2001 From: Krakenied Date: Fri, 12 Jun 2026 02:22:58 +0200 Subject: [PATCH] Correct minor docs inaccuracies --- docs/task-types/blockitemdropping-(task-type).md | 2 +- docs/task-types/blocklootdispensing-(task-type).md | 2 +- docs/task-types/blockshearing-(task-type).md | 2 +- docs/task-types/consume-(task-type).md | 2 +- docs/task-types/crafting-(task-type).md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/task-types/blockitemdropping-(task-type).md b/docs/task-types/blockitemdropping-(task-type).md index 83838fd29..8ad0b74e2 100644 --- a/docs/task-types/blockitemdropping-(task-type).md +++ b/docs/task-types/blockitemdropping-(task-type).md @@ -25,7 +25,7 @@ This is triggered by [`BlockDropItemEvent`](https://hub.spigotmc.org/javadocs/bu |---------------|-------------------------------------------------------------------|--------------------------------|----------|---------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `amount` | The number of items. | Integer | Yes | \- | \- | | `block` | The specific blocks to break. | Material, or list of materials | No | \- | Not specifying this field will allow all blocks to count towards the task. Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for block names. | -| `item` | The specific item to be dropped. | Material, or ItemStack | Yes | \- | Accepts standard [item definition](../configuration/defining-items). Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for material names. | +| `item` | The specific item to be dropped. | Material, or ItemStack | No | \- | Accepts standard [item definition](../configuration/defining-items). Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for material names. | | `data` | The data code for the item. | Integer | No | 0 | This field is not used in Minecraft versions 1.13+, nor is it compatible with ItemStack definitions. | | `exact-match` | Whether the item should exactly match what is defined. | Boolean | No | true | \- | | `count-drops` | Whether the plugin should count drops (actions) instead of items. | Boolean | No | false | \- | diff --git a/docs/task-types/blocklootdispensing-(task-type).md b/docs/task-types/blocklootdispensing-(task-type).md index 04131b12f..cae109ebd 100644 --- a/docs/task-types/blocklootdispensing-(task-type).md +++ b/docs/task-types/blocklootdispensing-(task-type).md @@ -20,7 +20,7 @@ Make certain block dispense certain loot. |-------------------|-----------------------------------------------------------------------|--------------------------------|----------|---------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `amount` | The number of items. | Integer | Yes | \- | \- | | `block` | The specific blocks to dispense the loot from. | Material, or list of materials | No | \- | Not specifying this field will allow all blocks to count towards the task. Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for block names. | -| `item` | The specific item to be dispensed. | Material, or ItemStack | Yes | \- | Accepts standard [item definition](../configuration/defining-items). Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for material names. | +| `item` | The specific item to be dispensed. | Material, or ItemStack | No | \- | Accepts standard [item definition](../configuration/defining-items). Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for material names. | | `data` | The data code for the item. | Integer | No | 0 | This field is not used in Minecraft versions 1.13+, nor is it compatible with ItemStack definitions. | | `exact-match` | Whether the item should exactly match what is defined. | Boolean | No | true | \- | | `count-dispenses` | Whether the plugin should count dispenses (actions) instead of items. | Boolean | No | false | \- | diff --git a/docs/task-types/blockshearing-(task-type).md b/docs/task-types/blockshearing-(task-type).md index b5785471f..d4324ed7e 100644 --- a/docs/task-types/blockshearing-(task-type).md +++ b/docs/task-types/blockshearing-(task-type).md @@ -9,7 +9,7 @@ grand_parent: Task types Since v3.13.3 {: .label .label-green } -Minecraft 1.18.2+ required +Minecraft 1.16.4+ required {: .label .label-purple } Paper required diff --git a/docs/task-types/consume-(task-type).md b/docs/task-types/consume-(task-type).md index 1b6d053b8..8e3cea93c 100644 --- a/docs/task-types/consume-(task-type).md +++ b/docs/task-types/consume-(task-type).md @@ -16,7 +16,7 @@ Consume a specific item. | Key | Description | Type | Required | Default | Notes | |---------------|--------------------------------------------------------|------------------------|----------|---------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `amount` | The number of items to consume. | Integer | Yes | \- | \- | -| `item` | The specific item to obtain. | Material, or ItemStack | Yes | \- | Accepts standard [item definition](../configuration/defining-items). Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for material names. | +| `item` | The specific item to obtain. | Material, or ItemStack | No | \- | Accepts standard [item definition](../configuration/defining-items). Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for material names. | | `data` | The data code for the item. | Integer | No | 0 | This field is not used in Minecraft versions 1.13+, nor is it compatible with ItemStack definitions. | | `exact-match` | Whether the item should exactly match what is defined. | Boolean | No | true | \- | | `worlds` | Worlds which should count towards the progress. | List of world names | No | \- | \- | diff --git a/docs/task-types/crafting-(task-type).md b/docs/task-types/crafting-(task-type).md index 2a664f815..02b48c06f 100644 --- a/docs/task-types/crafting-(task-type).md +++ b/docs/task-types/crafting-(task-type).md @@ -16,7 +16,7 @@ Craft a set of items. | Key | Description | Type | Required | Default | Notes | |---------------|--------------------------------------------------------|------------------------|----------|---------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `amount` | The number of items to craft. | Integer | Yes | \- | \- | -| `item` | The specific item to craft. | Material, or ItemStack | Yes | \- | Accepts standard [item definition](../configuration/defining-items). Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for material names. | +| `item` | The specific item to craft. | Material, or ItemStack | No | \- | Accepts standard [item definition](../configuration/defining-items). Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for material names. | | `data` | The data code for the item. | Integer | No | 0 | This field is not used in Minecraft versions 1.13+, nor is it compatible with ItemStack definitions. | | `exact-match` | Whether the item should exactly match what is defined. | Boolean | No | true | \- | | `worlds` | Worlds which should count towards the progress. | List of world names | No | \- | \- |