mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-07 23:52:11 -07:00
@@ -1,6 +1,8 @@
|
|||||||
package org.bukkit.entity;
|
package org.bukkit.entity;
|
||||||
|
|
||||||
import org.bukkit.block.Block;
|
import org.bukkit.block.Block;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
@@ -124,6 +126,23 @@ public interface AbstractArrow extends Projectile {
|
|||||||
*/
|
*/
|
||||||
public void setShotFromCrossbow(boolean shotFromCrossbow);
|
public void setShotFromCrossbow(boolean shotFromCrossbow);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the ItemStack which will be picked up from this arrow.
|
||||||
|
*
|
||||||
|
* @return The picked up ItemStack
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
@ApiStatus.Experimental
|
||||||
|
public ItemStack getItem();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the ItemStack which will be picked up from this arrow.
|
||||||
|
*
|
||||||
|
* @param item ItemStack set to be picked up
|
||||||
|
*/
|
||||||
|
@ApiStatus.Experimental
|
||||||
|
public void setItem(@NotNull ItemStack item);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents the pickup status of this arrow.
|
* Represents the pickup status of this arrow.
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user