Added documentation

This commit is contained in:
bluefireoly
2020-07-15 14:56:12 +02:00
parent b6fa27c9a2
commit 48499bc1fe
3 changed files with 23 additions and 0 deletions

View File

@@ -4,7 +4,16 @@ import org.bukkit.Material
import org.bukkit.event.inventory.PrepareItemCraftEvent
import org.bukkit.inventory.ItemStack
/**
* Checks if the event is "cancelled"
* by returning if the material of
* the result is equal to [Material.AIR].
*/
val PrepareItemCraftEvent.isCancelled: Boolean
get() = this.inventory.result?.type == Material.AIR
/**
* "Cancels" this event by
* setting the result to [Material.AIR].
*/
fun PrepareItemCraftEvent.cancel() { this.inventory.result = ItemStack(Material.AIR) }